/* ========================
   Embre — Shared Styles
   ======================== */

:root {
    --ink: #2a2d38;
    --ink-soft: #4a4d58;
    --ink-muted: #7a7d88;
    --cream: #eeeceb;
    --cream-deep: #e2e0dd;
    --warm-white: #f6f5f4;
    --surface: #ffffff;
    --coral: #b85450;
    --coral-hover: #a44844;
    --coral-light: #f9e6e5;
    --clay: #8b7e6a;
    --slate: #2c3340;
    --slate-mid: #3a4250;
    --mint: #e2f2e6;
    --mint-text: #3d7a4a;
    --border: #d6d4d2;
    --border-light: #e4e2e0;
    --serif: 'Hedvig Letters Serif', Georgia, serif;
    --sans: 'Inter', -apple-system, sans-serif;
    --max-w: 1120px;
    --section-py: clamp(80px, 10vw, 136px);
    --radius: 10px;
    --radius-lg: 16px;
    --radius-pill: 999px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--warm-white);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* — Focus styles (ADA) — */
:focus-visible {
    outline: 3px solid var(--coral);
    outline-offset: 2px;
}
a:focus-visible, button:focus-visible {
    outline: 3px solid var(--coral);
    outline-offset: 2px;
    border-radius: 4px;
}

/* — Skip Nav (ADA) — */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--coral);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 14px;
    z-index: 9999;
    text-decoration: none;
    transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* — Reduced motion (ADA) — */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; }
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }
.section { padding: var(--section-py) 0; }

.overline {
    font-family: var(--sans); font-size: 13px; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--coral); margin-bottom: 14px; display: block;
}
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.15; color: var(--ink); }
h1 { font-size: clamp(38px, 5.5vw, 66px); letter-spacing: -0.02em; line-height: 1.1; }
h2 { font-size: clamp(32px, 4.2vw, 52px); letter-spacing: -0.015em; }
h3 { font-size: clamp(20px, 2.5vw, 26px); }
.body-lg { font-size: 18px; line-height: 1.75; color: var(--ink-soft); }

.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--sans); font-size: 15px; font-weight: 600;
    padding: 16px 32px; border-radius: var(--radius-pill); border: none;
    cursor: pointer; transition: all 0.25s ease; text-decoration: none;
}
.btn--primary { background: var(--coral); color: white; }
.btn--primary:hover { background: var(--coral-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(184,84,80,0.25); }
.btn--outline { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
.btn--outline:hover { border-color: var(--ink); background: rgba(0,0,0,0.02); }
.btn--white { background: white; color: var(--coral); }
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
.btn--ghost-white { background: rgba(255,255,255,0.12); color: white; border: 1.5px solid rgba(255,255,255,0.25); }
.btn--ghost-white:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); }
.btn--arrow::after { content: '\2192'; font-size: 16px; transition: transform 0.2s; }
.btn--arrow:hover::after { transform: translateX(3px); }

/* — Nav — */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 18px 0; transition: all 0.35s ease;
}
.nav.scrolled {
    background: rgba(250,247,242,0.88); backdrop-filter: blur(20px) saturate(1.2);
    border-bottom: 1px solid var(--border-light); padding: 12px 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__logo { font-family: var(--serif); font-size: 24px; color: var(--ink); text-decoration: none; }
.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__links a { font-size: 14px; font-weight: 500; color: var(--ink-soft); transition: color 0.2s; }
.nav__links a:hover { color: var(--ink); }
.nav__cta { font-size: 13px !important; padding: 10px 22px !important; color: white !important; }

/* — Mobile Nav — */
.nav__toggle {
    display: none;
    background: none; border: none; cursor: pointer;
    padding: 8px; width: 44px; height: 44px;
    align-items: center; justify-content: center;
    flex-direction: column; gap: 5px;
}
.nav__toggle-bar {
    display: block; width: 22px; height: 2px;
    background: var(--ink); border-radius: 2px; transition: all 0.3s ease;
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
@media (max-width: 768px) {
    .nav__toggle { display: flex; }
    .nav__links {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column; background: rgba(250,247,242,0.98);
        backdrop-filter: blur(20px); padding: 24px; gap: 20px;
        border-bottom: 1px solid var(--border-light); box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    .nav__links.open { display: flex; }
    .nav__links a { font-size: 16px; }
    .nav__cta { width: 100%; justify-content: center; font-size: 15px !important; padding: 14px 28px !important; }
}

/* — Hero — */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    padding-top: 80px; padding-bottom: 40px;
    background: var(--cream); position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 75% 20%, rgba(184,84,80,0.05) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 15% 75%, rgba(124,132,148,0.04) 0%, transparent 60%);
    pointer-events: none;
}
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-anim { opacity: 0; animation: heroFadeUp 0.6s ease-out forwards; }
.hero-anim--1 { animation-delay: 0.05s; }
.hero-anim--2 { animation-delay: 0.15s; }
.hero-anim--3 { animation-delay: 0.25s; }
.hero-anim--4 { animation-delay: 0.35s; }
.hero-anim--5 { animation-delay: 0.45s; }
.hero-anim--6 { animation-delay: 0.55s; }
.hero__grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
@media (min-width: 768px) { .hero__grid { grid-template-columns: 1.1fr 0.9fr; gap: 72px; } }
.hero__badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; border: none; border-radius: 0;
    padding: 0; font-size: 13px; font-weight: 600; color: var(--coral);
    margin-bottom: 20px; letter-spacing: 0.06em; text-transform: uppercase;
}
.hero__badge-dot { width: 7px; height: 7px; background: var(--coral); border-radius: 50%; flex-shrink: 0; opacity: 0.7; }
.hero h1 { margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--coral); }
.hero__sub { font-size: 18px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 40px; max-width: 500px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__proof { display: flex; align-items: center; gap: 16px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
.hero__proof-avatars { display: flex; }
.hero__proof-avatars span {
    width: 38px; height: 38px; border-radius: 50%; border: 2.5px solid var(--cream);
    margin-left: -10px; display: flex; align-items: center; justify-content: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(255,255,255,0.7)'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: center 60%; background-size: 60%;
}
.hero__proof-avatars span:first-child { margin-left: 0; }
.hero__proof-text { font-size: 14px; color: var(--ink-muted); line-height: 1.5; }
.hero__proof-text strong { color: var(--ink); display: block; font-weight: 600; }

.hero__visual {
    border-radius: var(--radius-lg);
    position: relative; overflow: hidden;
    background: transparent;
    box-shadow: 0 32px 80px rgba(61,74,94,0.18), 0 12px 32px rgba(61,74,94,0.08);
}
.hero__video {
    width: 100%; aspect-ratio: 5/4; display: block;
    border-radius: var(--radius-lg); border: none;
}

/* — Social Proof Banner — */
.proof-banner {
    background: var(--slate); color: white;
    padding: 16px 0; text-align: center;
}
.proof-banner__inner {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; font-size: 14px; flex-wrap: wrap;
}
.proof-banner__stars { color: var(--coral); font-size: 16px; letter-spacing: 2px; }
.proof-banner__quote { color: rgba(255,255,255,0.85); }
.proof-banner__author { color: rgba(255,255,255,0.5); font-size: 13px; }

/* — Compare (3 columns) — */
.compare__grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 48px; }
@media (min-width: 768px) { .compare__grid { grid-template-columns: 1fr 1fr 1fr; } }
.compare__card { border-radius: var(--radius-lg); padding: 36px; }
.compare__card--old { background: var(--cream); border: 1px solid var(--border-light); }
.compare__card--new { background: var(--slate); color: white; }
.compare__card h3 { margin-bottom: 24px; font-size: 20px; }
.compare__card--new h3 { color: white; }
.compare__card ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.compare__card li { font-size: 14px; line-height: 1.6; padding-left: 28px; position: relative; }
.compare__card--old li { color: var(--ink-soft); }
.compare__card--old li::before { content: '\2715'; position: absolute; left: 0; color: #c47055; font-weight: 700; font-size: 13px; top: 2px; }
.compare__card--new li { color: rgba(255,255,255,0.85); }
.compare__card--new li::before { content: '\2713'; position: absolute; left: 0; color: #8fd4a0; font-weight: 700; font-size: 14px; top: 1px; }

/* — Steps — */
.steps { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 48px; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
    position: relative; padding: 36px 28px; border-radius: var(--radius-lg);
    background: white; border: 1px solid var(--border-light);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.step:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.step__num {
    font-family: var(--serif); font-size: 48px; color: var(--coral);
    opacity: 0.35; line-height: 1; display: block; margin-bottom: 16px;
}
.step h3 { font-size: 18px; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--ink-muted); line-height: 1.7; }

/* — Features — */
.section--dark {
    background: linear-gradient(170deg, var(--slate) 0%, #343c4c 40%, var(--slate) 100%);
    color: white; position: relative; overflow: hidden;
}
.section--dark::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 40% 40% at 80% 20%, rgba(184,84,80,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 30% 30% at 10% 80%, rgba(124,132,148,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.section--dark .overline { color: #d4918e; }
.features { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 48px; position: relative; z-index: 1; }
@media (min-width: 768px) { .features { grid-template-columns: repeat(3, 1fr); } }
.feature {
    padding: 36px 28px; border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    transition: background 0.2s ease;
}
.feature:hover { background: rgba(255,255,255,0.07); }
.feature__icon {
    font-size: 32px; margin-bottom: 22px; line-height: 1;
}
.feature h3 { font-size: 18px; margin-bottom: 10px; color: white; }
.feature p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* — Founder (two-column on desktop) — */
.founder__grid {
    display: grid; grid-template-columns: 1fr; gap: 32px; margin-top: 48px;
}
@media (min-width: 768px) {
    .founder__grid { grid-template-columns: 0.4fr 0.6fr; gap: 64px; align-items: start; }
}
.founder__left {}
.founder__left h2 { margin-bottom: 28px; }
.founder__photo-wrap { position: relative; width: fit-content; }
.founder__chat-bubble {
    position: absolute; top: -32px; right: -80px; width: 140px; z-index: 2;
}
@media (max-width: 768px) {
    .founder__chat-bubble { width: 110px; top: -24px; right: -28px; }
}
.founder__photo {
    width: 100%; max-width: 240px; aspect-ratio: 1;
    border-radius: var(--radius-lg); overflow: hidden; position: relative;
}
.founder__photo img {
    width: 100%; height: 100%; object-fit: cover;
}
.founder__body p { color: var(--ink-soft); line-height: 1.8; margin-bottom: 16px; font-size: 16px; }
.founder__sig { margin-top: 28px; display: flex; align-items: center; gap: 16px; }
.founder__sig-name { font-family: var(--serif); font-size: 20px; margin-bottom: 2px; }
.founder__sig-title { font-size: 14px; color: var(--ink-muted); }

/* — Testimonial — */
.section--testimonial { padding: clamp(48px, 6vw, 80px) 0; }
.testimonial__card {
    max-width: 740px; margin: 0 auto; text-align: center;
    background: white; border-radius: var(--radius-lg);
    padding: 44px 40px; border: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04); position: relative;
}
.testimonial__card::before {
    content: '\201C'; font-family: var(--serif); font-size: 120px; line-height: 1;
    color: var(--coral); opacity: 0.08; position: absolute; top: 8px; left: 32px;
}
.testimonial__stars { color: var(--coral); font-size: 18px; letter-spacing: 3px; margin-bottom: 20px; display: block; }
.testimonial__quote {
    font-family: var(--serif); font-size: clamp(20px, 2.8vw, 28px);
    line-height: 1.5; margin-bottom: 24px; position: relative; z-index: 1;
}
.testimonial__author { font-size: 15px; color: var(--ink-muted); }
.testimonial__author strong { color: var(--ink); font-weight: 600; }

/* — Pricing (3 tiers) — */
.pricing {
    display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 48px;
    max-width: 1000px; margin-left: auto; margin-right: auto;
}
@media (min-width: 768px) { .pricing { grid-template-columns: 1fr 1.08fr 1fr; } }
.price-card {
    border-radius: var(--radius-lg); padding: 40px 36px; background: white;
    border: 1px solid var(--border-light); display: flex; flex-direction: column;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.price-card--featured {
    border-color: var(--coral); box-shadow: 0 8px 32px rgba(184,84,80,0.1); position: relative;
}
@media (min-width: 768px) {
    .price-card--featured { padding-top: 48px; padding-bottom: 48px; margin: -8px 0; }
}
.price-card__badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--coral); color: white;
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
    padding: 5px 20px; border-radius: var(--radius-pill); white-space: nowrap;
}
.price-card__name { font-family: var(--sans); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-muted); margin-bottom: 4px; }
.price-card__tagline { font-family: var(--serif); font-size: 22px; margin-bottom: 16px; color: var(--ink); }
.price-card__price { font-family: var(--serif); font-size: 32px; line-height: 1.1; margin-bottom: 2px; }
.price-card__price span { font-family: var(--sans); font-size: 14px; font-weight: 400; color: var(--ink-muted); }
.price-card__monthly { font-family: var(--sans); font-size: 16px; font-weight: 600; color: var(--ink-soft); margin-bottom: 4px; }
.price-card__note { font-size: 13px; color: var(--ink-muted); margin-bottom: 18px; line-height: 1.5; }

/* — Pricing Toggle — */
.pricing-toggle {
    display: flex; align-items: center; justify-content: center; gap: 14px;
    margin: 32px auto 0; max-width: 400px; flex-wrap: wrap;
}
.pricing-toggle__right { display: flex; align-items: center; gap: 8px; }
@media (max-width: 768px) {
    .pricing-toggle { gap: 10px 14px; }
}
.pricing-toggle__label {
    font-size: 14px; font-weight: 600; color: var(--ink-muted);
    cursor: pointer; transition: color 0.2s; user-select: none;
}
.pricing-toggle__label.active { color: var(--ink); }
.pricing-toggle__switch {
    position: relative; width: 48px; height: 26px;
    background: var(--border); border-radius: 13px; cursor: pointer;
    transition: background 0.3s; border: none; padding: 0;
}
.pricing-toggle__switch::after {
    content: ''; position: absolute; top: 3px; left: 3px;
    width: 20px; height: 20px; background: white;
    border-radius: 50%; transition: transform 0.3s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.pricing-toggle__switch.active { background: var(--coral); }
.pricing-toggle__switch.active::after { transform: translateX(22px); }
.pricing-toggle__save {
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
    background: var(--mint); color: var(--mint-text); padding: 4px 10px;
    border-radius: var(--radius-pill);
}
.price-card__divider { height: 1px; background: var(--border-light); margin-bottom: 24px; }
.price-card__turnaround {
    display: inline-flex; align-items: center; gap: 6px;
    border-radius: var(--radius-pill); padding: 9px 16px;
    font-size: 13px; font-weight: 600; margin-bottom: 24px;
    background: var(--cream); color: var(--clay);
}
.price-card--featured .price-card__turnaround { background: var(--coral-light); color: var(--coral); }
.price-card__list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; flex-grow: 1; }
.price-card__list li { font-size: 14px; color: var(--ink-soft); padding-left: 26px; position: relative; line-height: 1.55; }
.price-card__list li::before { content: '\2713'; position: absolute; left: 0; color: var(--mint-text); font-weight: 700; font-size: 13px; }
.price-card__list li.muted { color: var(--ink-muted); }
.price-card__list li.muted::before { content: '\2014'; color: var(--border); }
.price-card .btn { width: 100%; justify-content: center; }
.pricing__note { text-align: center; margin-top: 28px; font-size: 14px; color: var(--ink-muted); max-width: 640px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.pricing__bespoke {
    text-align: center; margin-top: 48px; padding: 32px; border-radius: var(--radius-lg);
    background: var(--cream); border: 1px solid var(--border-light);
    max-width: 640px; margin-left: auto; margin-right: auto;
}
.pricing__bespoke p { font-size: 15px; color: var(--ink-soft); line-height: 1.7; }
.pricing__bespoke a { color: var(--coral); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(184,84,80,0.3); text-underline-offset: 3px; }
.pricing__bespoke a:hover { text-decoration-color: var(--coral); }

/* — Comparison Table — */
.ctable-wrap {
    margin-top: 40px; overflow-x: auto; -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-lg); border: 1px solid var(--border-light);
    background: white; box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.ctable-scroll-hint { display: none; text-align: center; font-size: 13px; color: var(--ink-muted); margin-top: 12px; }
@media (max-width: 900px) { .ctable-scroll-hint { display: block; } }
.ctable { width: 100%; min-width: 720px; border-collapse: collapse; font-size: 14px; }
.ctable thead th {
    padding: 20px 16px; font-family: var(--sans); font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-muted);
    text-align: center; border-bottom: 1px solid var(--border-light); background: var(--cream); white-space: nowrap;
}
.ctable thead th:first-child { text-align: left; border-radius: calc(var(--radius-lg) - 1px) 0 0 0; }
.ctable thead th:last-child { border-radius: 0 calc(var(--radius-lg) - 1px) 0 0; }
.ctable thead th.ctable-hl { background: var(--coral); color: white; position: relative; }
.ctable thead th.ctable-hl::before {
    content: 'Best Value';
    position: absolute; top: -1px; left: 50%; transform: translate(-50%, -100%);
    background: var(--coral); color: white;
    font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
    padding: 5px 16px; border-radius: 10px 10px 0 0; white-space: nowrap;
}
.ctable tbody td, .ctable tbody th {
    padding: 16px; text-align: center; border-bottom: 1px solid var(--border-light);
    color: var(--ink-soft); vertical-align: middle;
}
.ctable tbody tr:last-child td, .ctable tbody tr:last-child th { border-bottom: none; }
.ctable tbody th { text-align: left; font-weight: 600; color: var(--ink); white-space: nowrap; font-family: var(--sans); font-size: 14px; }
.ctable tbody td.ctable-hl-col { background: var(--coral-light); }
.ctable .c-yes { color: var(--mint-text); font-weight: 700; font-size: 16px; }
.ctable .c-no { color: #d4d0cb; font-size: 16px; }
.ctable .c-mid { color: var(--ink-muted); font-size: 13px; }
.ctable .c-price { font-family: var(--serif); font-size: 16px; color: var(--ink); }
.ctable .c-price span { font-family: var(--sans); font-size: 12px; color: var(--ink-muted); font-weight: 400; display: block; }
.ctable-subhead td {
    background: var(--cream) !important; font-size: 11px !important; font-weight: 700 !important;
    text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-muted) !important;
    padding: 14px 16px !important; text-align: left !important;
}
.ctable-subhead td.ctable-hl-col { background: #fce8de !important; }

/* — FAQ — */
.faq-list { max-width: 720px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-item:first-child { border-top: 1px solid var(--border-light); }
.faq-q {
    width: 100%; background: none; border: none; font-family: var(--sans);
    font-size: 16px; font-weight: 600; color: var(--ink); text-align: left;
    padding: 22px 44px 22px 0; cursor: pointer; position: relative; line-height: 1.5;
    transition: color 0.2s;
}
.faq-q:hover { color: var(--coral); }
.faq-q::after {
    content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
    font-size: 24px; font-weight: 300; color: var(--ink-muted); transition: all 0.3s;
    width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; background: var(--cream);
}
.faq-item.open .faq-q::after { content: '\2212'; background: var(--coral-light); color: var(--coral); }
.faq-a {
    max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease;
    font-size: 15px; color: var(--ink-soft); line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 350px; padding-bottom: 22px; }

/* — CTA — */
.section--cta {
    background: linear-gradient(145deg, var(--slate) 0%, var(--slate-mid) 100%);
    color: white; position: relative; overflow: hidden;
}
.section--cta::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 50% 50% at 70% 30%, rgba(184,84,80,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.final-cta { text-align: center; position: relative; z-index: 1; }
.final-cta .overline { color: #d4918e; }
.final-cta h2 { margin-bottom: 18px; color: white; }
.final-cta p { max-width: 500px; margin: 0 auto 36px; }
.final-cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* — Footer — */
.footer {
    padding: 56px 0 32px; background: var(--cream);
    text-align: center; font-size: 14px; color: var(--ink-muted);
}
.footer__logo { display: flex; justify-content: center; margin-bottom: 12px; }
.footer__logo img { height: 96px; width: auto; }
.footer a { color: var(--coral); text-decoration: underline; text-decoration-color: rgba(184,84,80,0.3); text-underline-offset: 3px; }
.footer a:hover { text-decoration-color: var(--coral); }
.footer__legal {
    display: flex; gap: 24px; justify-content: center; margin-top: 16px; flex-wrap: wrap;
}
.footer__legal a { font-size: 13px; color: var(--ink-muted); text-decoration: none; }
.footer__legal a:hover { color: var(--coral); text-decoration: underline; text-decoration-color: var(--coral); }

/* — Cookie Banner — */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
    background: var(--ink); color: white; padding: 20px 24px;
    transform: translateY(100%); transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner__inner {
    max-width: var(--max-w); margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.cookie-banner__text { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.8); flex: 1; min-width: 280px; }
.cookie-banner__text a { color: var(--coral); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner__btn {
    font-family: var(--sans); font-size: 13px; font-weight: 600;
    padding: 10px 20px; border-radius: var(--radius-pill); border: none;
    cursor: pointer; transition: all 0.2s;
}
.cookie-banner__btn--accept { background: var(--coral); color: white; }
.cookie-banner__btn--accept:hover { background: var(--coral-hover); }
.cookie-banner__btn--decline { background: rgba(255,255,255,0.1); color: white; border: 1px solid rgba(255,255,255,0.2); }
.cookie-banner__btn--decline:hover { background: rgba(255,255,255,0.15); }

/* — Modal — */
.modal-overlay {
    position: fixed; inset: 0; z-index: 10000;
    background: rgba(42,49,66,0.6); backdrop-filter: blur(4px);
    display: none; align-items: center; justify-content: center;
    padding: 24px; opacity: 0; transition: opacity 0.3s ease;
}
.modal-overlay.visible { display: flex; opacity: 1; }
.modal {
    background: white; border-radius: var(--radius-lg); padding: 48px 40px;
    max-width: 520px; width: 100%; position: relative;
    box-shadow: 0 32px 80px rgba(0,0,0,0.2); max-height: 90vh; overflow-y: auto;
}
.modal__close {
    position: absolute; top: 16px; right: 16px;
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--cream); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--ink-muted); transition: all 0.2s;
}
.modal__close:hover { background: var(--border-light); color: var(--ink); }
.modal h2 { font-size: 28px; margin-bottom: 8px; }
.modal__sub { font-size: 15px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 32px; }
.modal__form { display: flex; flex-direction: column; gap: 16px; }
.modal__field label {
    display: block; font-size: 13px; font-weight: 600;
    color: var(--ink-soft); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.04em;
}
.modal__field input {
    width: 100%; padding: 14px 16px; border: 1.5px solid var(--border);
    border-radius: 12px; font-family: var(--sans); font-size: 15px;
    color: var(--ink); background: var(--warm-white);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.modal__field input::placeholder { color: var(--ink-muted); }
.modal__field input:focus { outline: none; border-color: var(--coral); box-shadow: 0 0 0 3px rgba(184,84,80,0.15); }
.modal__submit {
    margin-top: 8px; width: 100%; justify-content: center;
    font-size: 16px; padding: 16px 32px;
}
.modal__step2 { display: none; text-align: center; }
.modal__step2 h2 { margin-bottom: 12px; }
.modal__step2 p { color: var(--ink-soft); line-height: 1.7; margin-bottom: 28px; }
.modal__step2 .btn { width: 100%; justify-content: center; }

/* — Animations — */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* — Screen reader only — */
.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;
}

/* — Legal page styles (privacy, terms) — */
.legal-nav {
    padding: 18px 0; border-bottom: 1px solid var(--border-light); background: var(--cream);
}
.legal-nav__inner {
    max-width: 760px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.legal-nav a { font-size: 14px; font-weight: 500; color: var(--ink-soft); text-decoration: none; transition: color 0.2s; }
.legal-nav a:hover { color: var(--coral); }
.legal-nav__logo { font-family: var(--serif); font-size: 20px; color: var(--ink); text-decoration: none; }

.legal {
    max-width: 760px; margin: 0 auto; padding: 64px 24px 96px;
}
.legal h1 { font-family: var(--serif); font-size: 36px; font-weight: 400; margin-bottom: 8px; }
.legal__date { font-size: 14px; color: var(--ink-muted); margin-bottom: 48px; display: block; }
.legal h2 { font-family: var(--serif); font-size: 24px; font-weight: 400; margin: 40px 0 16px; }
.legal h3 { font-family: var(--sans); font-size: 16px; font-weight: 600; margin: 28px 0 12px; }
.legal p { color: var(--ink-soft); line-height: 1.75; margin-bottom: 16px; }
.legal ul, .legal ol { color: var(--ink-soft); line-height: 1.75; margin: 0 0 16px 24px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--coral); text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { text-decoration-color: var(--coral); }
.legal strong { color: var(--ink); }

/* — Service Areas — */
.sa-hero {
    padding: 140px 0 80px; background: var(--cream);
    text-align: center; position: relative; overflow: hidden;
}
.sa-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(184,84,80,0.04) 0%, transparent 60%);
    pointer-events: none;
}
.sa-section { padding: 80px 0; }
.sa-section__title {
    font-family: var(--serif); font-size: clamp(24px, 3vw, 32px);
    margin-bottom: 32px;
}
.sa-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}
.sa-card {
    display: flex; align-items: center; gap: 12px;
    padding: 20px 24px; border-radius: var(--radius);
    background: white; border: 1px solid var(--border-light);
    text-decoration: none; color: var(--ink);
    transition: all 0.2s ease; font-weight: 500; font-size: 15px;
}
.sa-card:hover {
    border-color: var(--coral); transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184,84,80,0.1);
}
.sa-card::after { content: '\2192'; color: var(--coral); margin-left: auto; transition: transform 0.2s; }
.sa-card:hover::after { transform: translateX(3px); }

/* — Blog — */
.blog-hero {
    padding: 140px 0 80px; background: var(--cream);
    text-align: center; position: relative; overflow: hidden;
}
.blog-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(184,84,80,0.04) 0%, transparent 60%);
    pointer-events: none;
}
.blog-grid {
    display: grid; grid-template-columns: 1fr; gap: 24px;
    margin-top: 48px;
}
@media (min-width: 768px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
.blog-card {
    background: white; border-radius: var(--radius-lg);
    border: 1px solid var(--border-light); padding: 36px;
    transition: all 0.2s ease; text-decoration: none; color: inherit;
    display: flex; flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.blog-card__meta {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 16px; font-size: 13px; color: var(--ink-muted);
}
.blog-card__tag {
    padding: 4px 12px; border-radius: var(--radius-pill);
    font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em;
    background: var(--coral-light); color: var(--coral);
}
.blog-card__tag[data-tag="trade-seo"]  { background: #f9e6e5; color: #a44844; }
.blog-card__tag[data-tag="lead-gen"]   { background: #e8f0fe; color: #3b72c4; }
.blog-card__tag[data-tag="web-design"] { background: #f3ebff; color: #7c4dbd; }
.blog-card__tag[data-tag="seo"]        { background: #e2f2e6; color: #3d7a4a; }
.blog-card__tag[data-tag="comparison"] { background: #fef6e0; color: #b08a1e; }
.blog-card__tag[data-tag="strategy"]   { background: #e8ecf4; color: #4a5a8a; }
.blog-card__tag[data-tag="growth"]     { background: #dff5e3; color: #2d8a45; }
.blog-card__tag[data-tag="local"]      { background: #fce8ec; color: #c44d60; }
.blog-card__tag[data-tag="decision"]   { background: #eae5db; color: #6b5f4e; }

/* — Blog Filter — */
.blog-filter {
    display: flex; flex-wrap: wrap; gap: 8px;
    justify-content: center; margin-top: 24px;
}
.blog-filter__btn {
    padding: 6px 16px; border-radius: var(--radius-pill);
    border: 1.5px solid var(--border); background: transparent;
    font-family: var(--sans); font-size: 13px; font-weight: 600;
    color: var(--ink-soft); cursor: pointer; transition: all 0.2s ease;
    text-transform: uppercase; letter-spacing: 0.03em;
}
.blog-filter__btn:hover { border-color: var(--ink-muted); color: var(--ink); }
.blog-filter__btn.active { background: var(--ink); color: white; border-color: var(--ink); }

/* tag-colored active states */
.blog-filter__btn[data-filter="trade-seo"].active  { background: #a44844; border-color: #a44844; color: #fff; }
.blog-filter__btn[data-filter="lead-gen"].active    { background: #3b72c4; border-color: #3b72c4; color: #fff; }
.blog-filter__btn[data-filter="web-design"].active  { background: #7c4dbd; border-color: #7c4dbd; color: #fff; }
.blog-filter__btn[data-filter="seo"].active         { background: #3d7a4a; border-color: #3d7a4a; color: #fff; }
.blog-filter__btn[data-filter="comparison"].active   { background: #b08a1e; border-color: #b08a1e; color: #fff; }
.blog-filter__btn[data-filter="strategy"].active     { background: #4a5a8a; border-color: #4a5a8a; color: #fff; }
.blog-filter__btn[data-filter="growth"].active       { background: #2d8a45; border-color: #2d8a45; color: #fff; }
.blog-filter__btn[data-filter="local"].active        { background: #c44d60; border-color: #c44d60; color: #fff; }
.blog-filter__btn[data-filter="decision"].active     { background: #6b5f4e; border-color: #6b5f4e; color: #fff; }

.blog-card[hidden] { display: none; }
.blog-card h3 { font-size: 20px; margin-bottom: 12px; line-height: 1.3; }
.blog-card p { font-size: 15px; color: var(--ink-soft); line-height: 1.7; flex-grow: 1; }
.blog-card__link {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 20px; font-size: 14px; font-weight: 600;
    color: var(--coral); transition: gap 0.2s;
}
.blog-card:hover .blog-card__link { gap: 10px; }

/* — Blog Post — */
.post-nav {
    padding: 18px 0; border-bottom: 1px solid var(--border-light); background: var(--cream);
}
.post-nav__inner {
    max-width: 760px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.post-nav a { font-size: 14px; font-weight: 500; color: var(--ink-soft); text-decoration: none; transition: color 0.2s; }
.post-nav a:hover { color: var(--coral); }
.post-nav__logo { font-family: var(--serif); font-size: 20px; color: var(--ink); text-decoration: none; }

.post-header {
    background: var(--cream); padding: 64px 24px 48px; text-align: center;
}
.post-header__inner { max-width: 760px; margin: 0 auto; }
.post-header__tag {
    display: inline-block; background: var(--coral-light); color: var(--coral);
    padding: 5px 14px; border-radius: var(--radius-pill);
    font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em;
    margin-bottom: 20px;
}
.post-header h1 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; line-height: 1.2; }
.post-header__meta { font-size: 14px; color: var(--ink-muted); }

.post-body {
    max-width: 760px; margin: 0 auto; padding: 48px 24px 96px;
}
.post-body h2 { font-family: var(--serif); font-size: 24px; font-weight: 400; margin: 40px 0 16px; }
.post-body h3 { font-family: var(--sans); font-size: 16px; font-weight: 600; margin: 28px 0 12px; }
.post-body p { color: var(--ink-soft); line-height: 1.8; margin-bottom: 20px; font-size: 16px; }
.post-body ul, .post-body ol { color: var(--ink-soft); line-height: 1.8; margin: 0 0 20px 24px; }
.post-body li { margin-bottom: 8px; }
.post-body a { color: var(--coral); text-decoration: underline; text-underline-offset: 3px; }
.post-body a:hover { text-decoration-color: var(--coral); }
.post-body strong { color: var(--ink); }
.post-body blockquote {
    border-left: 3px solid var(--coral);
    padding: 16px 24px; margin: 28px 0;
    background: var(--cream); border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic; color: var(--ink-soft);
}
