/* ==========================================================================
   LocalTechEdge — Unified Stylesheet
   Colors: Cream, Forest Green, Sage, Amber (earthy palette)
   Fonts: Fraunces (serif headings), Outfit (sans-serif body)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
    --cream: #FAF6EE;
    --forest: #1A3C34;
    --sage: #4D8B7A;
    --sage-soft: rgba(77, 139, 122, .08);
    --amber: #CF8A2E;
    --amber-glow: #E09B3A;
    --amber-soft: rgba(207, 138, 46, .1);
    --clay: #B89A76;
    --charcoal: #272727;
    --text: #4A4A4A;
    --text-light: #7A7A7A;
    --white: #FFF;
    --border: rgba(26, 60, 52, .07);
    --shadow-md: 0 8px 30px rgba(26, 60, 52, .07);
    --shadow-lg: 0 20px 60px rgba(26, 60, 52, .1);
    --r-sm: 12px;
    --r-md: 20px;
    --r-lg: 28px;
    --r-full: 100px;
}

/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    color: var(--forest);
    line-height: 1.2;
}

a {
    color: var(--sage);
}

a:hover {
    text-decoration: underline;
}

/* --------------------------------------------------------------------------
   3. Navigation
   -------------------------------------------------------------------------- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: all .5s;
}

nav.scrolled {
    background: rgba(250, 246, 238, .9);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 30px rgba(26, 60, 52, .05);
}

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

.logo {
    font-family: 'Fraunces', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--forest);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.logo-mark {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--sage), var(--forest));
    border-radius: 9px;
    position: relative;
}

.logo-mark::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255, 255, 255, .5);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-size: .85rem;
    font-weight: 500;
    transition: color .3s;
}

.nav-links a:hover {
    color: var(--forest);
}

.nav-cta {
    background: var(--forest) !important;
    color: var(--cream) !important;
    padding: .5rem 1.2rem !important;
    border-radius: var(--r-full) !important;
    font-size: .82rem !important;
    font-weight: 600 !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--forest);
    border-radius: 2px;
}

/* --------------------------------------------------------------------------
   4. Hero Section
   -------------------------------------------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 5rem;
    position: relative;
}

.hero-deco {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .07;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: var(--sage);
    top: -200px;
    right: -150px;
    animation: drift 25s ease-in-out infinite;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--amber);
    bottom: -100px;
    left: -100px;
    animation: drift 20s ease-in-out infinite reverse;
}

@keyframes drift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -20px); }
}

.hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--sage-soft);
    border: 1px solid rgba(77, 139, 122, .1);
    color: var(--sage);
    padding: .35rem .8rem;
    border-radius: var(--r-full);
    font-size: .75rem;
    font-weight: 600;
    margin-bottom: 1.3rem;
}

.hero h1 {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    letter-spacing: -.02em;
    margin-bottom: 1.3rem;
}

.hero h1 em {
    color: var(--amber);
    font-style: italic;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 500px;
    margin-bottom: 2rem;
}

.hero-btns {
    display: flex;
    gap: .7rem;
    flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 1.6rem;
    border-radius: var(--r-full);
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
    transition: all .3s;
    border: none;
    cursor: pointer;
}

.btn-fill {
    background: var(--forest);
    color: var(--cream);
}

.btn-fill:hover {
    background: var(--sage);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--forest);
    border: 1.5px solid var(--border);
}

.btn-ghost:hover {
    border-color: var(--forest);
}

/* --------------------------------------------------------------------------
   6. Hero Card
   -------------------------------------------------------------------------- */
.hero-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.hero-card-stripe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sage), var(--amber));
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: 1.2rem;
}

.hero-card-avatar {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--forest), var(--sage));
    display: grid;
    place-items: center;
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
}

.hero-card-name {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    color: var(--forest);
    font-weight: 600;
}

.hero-card-title {
    font-size: .78rem;
    color: var(--text-light);
}

.credential-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-bottom: 1.2rem;
}

.cred-tag {
    padding: .3rem .65rem;
    border-radius: var(--r-full);
    font-size: .7rem;
    font-weight: 600;
}

.cred-tag.g { background: var(--sage-soft); color: var(--sage); }
.cred-tag.a { background: var(--amber-soft); color: var(--amber); }
.cred-tag.c { background: rgba(184, 154, 118, .1); color: var(--clay); }

.hero-card-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .8rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border);
}

.hc-stat { text-align: center; }

.hc-stat-num {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    color: var(--forest);
    font-weight: 600;
}

.hc-stat-label {
    font-size: .68rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* --------------------------------------------------------------------------
   7. Trust Bar
   -------------------------------------------------------------------------- */
.trust-bar {
    padding: 2rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-bar-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.trust-bar-label {
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-light);
}

.trust-logo {
    font-family: 'Fraunces', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
    opacity: .22;
}

/* --------------------------------------------------------------------------
   8. Sections — Shared
   -------------------------------------------------------------------------- */
section {
    padding: 5rem 2rem;
}

.section-wrap {
    max-width: 1180px;
    margin: 0 auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--sage);
    font-size: .74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: .8rem;
}

.section-tag::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--sage);
}

.section-heading {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    margin-bottom: .6rem;
}

.section-sub {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 540px;
}

/* --------------------------------------------------------------------------
   9. Services Section
   -------------------------------------------------------------------------- */
.services {
    background: var(--forest);
    position: relative;
    overflow: hidden;
}

.services .section-tag { color: rgba(255, 255, 255, .5); }
.services .section-tag::before { background: rgba(255, 255, 255, .3); }
.services .section-heading { color: var(--cream); }
.services .section-sub { color: rgba(255, 255, 255, .45); }

.svc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.1rem;
    margin-top: 2.5rem;
}

.svc {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--r-md);
    padding: 1.8rem;
    transition: all .3s;
}

.svc:hover {
    background: rgba(255, 255, 255, .07);
    transform: translateY(-2px);
}

.svc-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.svc-icon.i1 { background: rgba(207, 138, 46, .15); }
.svc-icon.i2 { background: rgba(77, 139, 122, .2); }
.svc-icon.i3 { background: rgba(184, 154, 118, .2); }
.svc-icon.i4 { background: rgba(224, 155, 58, .15); }
.svc-icon.i5 { background: rgba(107, 158, 143, .2); }
.svc-icon.i6 { background: rgba(207, 138, 46, .12); }

.svc h3 { color: var(--cream); font-size: 1.1rem; margin-bottom: .4rem; }
.svc p { color: rgba(255, 255, 255, .45); font-size: .85rem; }

/* --------------------------------------------------------------------------
   10. Process Steps
   -------------------------------------------------------------------------- */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.pstep { text-align: center; }

.pstep-num {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border);
    display: grid;
    place-items: center;
    margin: 0 auto 1.2rem;
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    color: var(--amber);
    font-weight: 600;
}

.pstep h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.pstep p { color: var(--text-light); font-size: .88rem; max-width: 260px; margin: 0 auto; }

/* --------------------------------------------------------------------------
   11. About Section
   -------------------------------------------------------------------------- */
.about { background: var(--white); }

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    margin-top: 2.5rem;
    align-items: start;
}

.about-prose p { color: var(--text); margin-bottom: 1rem; font-size: .95rem; }
.about-prose strong { color: var(--forest); }

.pillars { list-style: none; margin-top: 1.5rem; }

.pillars li {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.pillars li:last-child { border-bottom: none; }

.pillar-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 1rem;
    background: var(--sage-soft);
}

.pillar-name { font-weight: 700; color: var(--forest); font-size: .88rem; margin-bottom: .1rem; }
.pillar-desc { color: var(--text-light); font-size: .82rem; }

.about-quote-card {
    background: var(--cream);
    border-radius: var(--r-lg);
    padding: 2rem;
    position: relative;
}

.q-mark {
    font-family: 'Fraunces', serif;
    font-size: 4rem;
    color: var(--amber);
    opacity: .15;
    line-height: 1;
    position: absolute;
    top: .5rem;
    left: 1.5rem;
}

.about-quote-text {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    color: var(--forest);
    line-height: 1.5;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.about-sig {
    margin-top: 1.2rem;
    display: flex;
    align-items: center;
    gap: .7rem;
}

.about-sig-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sage), var(--amber));
    display: grid;
    place-items: center;
    font-family: 'Fraunces', serif;
    font-size: .9rem;
    color: white;
    font-weight: 600;
}

.about-sig-name { font-weight: 700; color: var(--forest); font-size: .88rem; }
.about-sig-role { color: var(--text-light); font-size: .75rem; }

.exp-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .6rem;
    margin-top: 1.2rem;
}

.exp-badge {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: .8rem 1rem;
    text-align: center;
}

.exp-badge-num {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    color: var(--forest);
    font-weight: 600;
}

.exp-badge-label {
    font-size: .7rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* --------------------------------------------------------------------------
   12. Service Areas
   -------------------------------------------------------------------------- */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: .7rem;
    margin-top: 1.5rem;
}

.area-tag {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: .7rem .9rem;
    text-align: center;
    font-weight: 600;
    font-size: .85rem;
    color: var(--forest);
    transition: all .3s;
}

.area-tag:hover { border-color: var(--sage); }
.area-tag small { display: block; font-weight: 400; font-size: .7rem; color: var(--text-light); }

/* --------------------------------------------------------------------------
   13. AIO / Learn Content
   -------------------------------------------------------------------------- */
.aio-content { background: var(--white); }
.aio-content article { margin-bottom: 2rem; }
.aio-content article h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.aio-content article p { color: var(--text); font-size: .93rem; margin-bottom: .4rem; }

/* --------------------------------------------------------------------------
   14. Reviews / Testimonials
   -------------------------------------------------------------------------- */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.1rem;
    margin-top: 2.5rem;
}

.review {
    background: var(--cream);
    border-radius: var(--r-md);
    padding: 1.8rem;
    border: 1px solid var(--border);
    transition: all .3s;
}

.review:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.review-stars { color: var(--amber); font-size: .9rem; letter-spacing: 2px; margin-bottom: .7rem; }

.review blockquote {
    color: var(--charcoal);
    font-size: .9rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.review-author { display: flex; align-items: center; gap: .6rem; }

.review-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--sage-soft);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: .78rem;
    color: var(--sage);
}

.review-name { font-weight: 600; font-size: .85rem; color: var(--forest); }
.review-biz { font-size: .73rem; color: var(--text-light); }

/* --------------------------------------------------------------------------
   15. FAQ Accordion
   -------------------------------------------------------------------------- */
.faq-list { max-width: 700px; margin: 2.5rem auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 1.2rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    font-size: .95rem;
    font-weight: 600;
    color: var(--forest);
    text-align: left;
}

.faq-q::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--sage);
    transition: transform .3s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.open .faq-q::after { transform: rotate(45deg); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s;
    font-size: .9rem;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-item.open .faq-a { max-height: 200px; padding-bottom: 1.2rem; }

/* --------------------------------------------------------------------------
   16. CTA Section
   -------------------------------------------------------------------------- */
.cta-section {
    background: var(--forest);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section .section-heading {
    color: var(--cream);
    max-width: 600px;
    margin: 0 auto .6rem;
}

.cta-section .section-sub {
    color: rgba(255, 255, 255, .45);
    max-width: 460px;
    margin: 0 auto 2rem;
}

.cta-btns { display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap; }

.cta-btns .btn-fill {
    background: var(--amber);
    color: var(--forest);
    font-size: .95rem;
    padding: .9rem 2rem;
}

.cta-btns .btn-fill:hover { background: var(--amber-glow); }

.cta-btns .btn-email {
    background: rgba(255, 255, 255, .1);
    color: var(--cream);
    font-size: .95rem;
    padding: .9rem 2rem;
    border-radius: var(--r-full);
    text-decoration: none;
    font-weight: 600;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.cta-btns .btn-email:hover { background: rgba(255, 255, 255, .18); }

.cta-note { color: rgba(255, 255, 255, .3); font-size: .76rem; margin-top: .8rem; }

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */
footer {
    background: #142F27;
    padding: 2.5rem 2rem 1.5rem;
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.footer-brand {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    color: var(--cream);
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    font-size: .82rem;
}

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

.footer-bottom {
    width: 100%;
    text-align: center;
    padding-top: 1.5rem;
    margin-top: .8rem;
    border-top: 1px solid rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .2);
    font-size: .75rem;
}

.footer-seo {
    color: rgba(255, 255, 255, .1);
    font-size: .63rem;
    margin-top: .4rem;
}

/* --------------------------------------------------------------------------
   18. Scroll Reveal Animation
   -------------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s, transform .6s;
    animation: revealFallback .8s ease forwards .3s;
}

.reveal.vis {
    opacity: 1;
    transform: translateY(0);
    animation: none;
}

@keyframes revealFallback {
    to { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------------------------------------------
   19. Topbar (Blog / Inner Pages)
   -------------------------------------------------------------------------- */
.topbar {
    background: var(--forest);
    padding: .8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar a {
    color: var(--cream);
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
}

.topbar-r {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.topbar-r a {
    color: rgba(255, 255, 255, .6);
    font-size: .85rem;
    text-decoration: none;
}

.topbar-r a:hover { color: var(--cream); }

/* --------------------------------------------------------------------------
   20. Blog Article Layout
   -------------------------------------------------------------------------- */
.wrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 2rem;
}

.art-head { margin-top: 3rem; }

.art-head .back {
    font-size: .85rem;
    color: var(--sage);
    margin-bottom: 1.5rem;
    display: inline-block;
    text-decoration: none;
}

.art-head .back:hover { text-decoration: underline; }
.art-head h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: .8rem; }

.art-meta {
    color: var(--text-light);
    font-size: .85rem;
    margin-bottom: .5rem;
    display: flex;
    gap: .6rem;
    align-items: center;
    flex-wrap: wrap;
}

.tag {
    background: rgba(77, 139, 122, .08);
    color: var(--sage);
    padding: .2rem .6rem;
    border-radius: 100px;
    font-size: .72rem;
    font-weight: 600;
}

.art-body { margin: 2rem auto 4rem; }
.art-body h2 { font-size: 1.35rem; margin: 2rem 0 .7rem; }
.art-body h3 { font-size: 1.1rem; margin: 1.5rem 0 .5rem; }
.art-body p { margin-bottom: 1.1rem; font-size: .97rem; }
.art-body ul, .art-body ol { margin: 0 0 1.1rem 1.5rem; }
.art-body li { margin-bottom: .4rem; font-size: .93rem; }
.art-body strong { color: var(--forest); }

.art-body blockquote {
    border-left: 3px solid var(--amber);
    padding: .8rem 1.2rem;
    margin: 1.5rem 0;
    background: rgba(207, 138, 46, .05);
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

/* Key Takeaway box */
.kt {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 0 0 2rem;
}

.kt h3 { font-size: 1rem; margin-bottom: .5rem; color: var(--amber); }

/* CTA box (in articles) */
.cta-box {
    background: var(--forest);
    color: var(--cream);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    margin: 2.5rem 0;
}

.cta-box h3 { color: var(--cream); font-size: 1.2rem; margin-bottom: .5rem; }
.cta-box p { color: rgba(255, 255, 255, .6); font-size: .9rem; margin-bottom: 1rem; }

.cta-box a {
    display: inline-block;
    padding: .65rem 1.4rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
    margin: .2rem;
}

.cta-box .btn-call { background: var(--amber); color: var(--forest); }
.cta-box .btn-email { background: rgba(255, 255, 255, .12); color: var(--cream); }
.cta-box a:hover { opacity: .88; text-decoration: none; }

/* --------------------------------------------------------------------------
   21. Blog Index Page
   -------------------------------------------------------------------------- */
.blog-hero { padding: 3rem 2rem 2rem; }
.blog-hero h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: .5rem; }
.blog-hero p { color: var(--text-light); font-size: 1rem; max-width: 550px; }

.posts { max-width: 760px; margin: 2rem auto; padding: 0 2rem; }

.post-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.8rem;
    margin-bottom: 1.2rem;
    transition: all .3s;
}

.post-card:hover {
    box-shadow: 0 8px 30px rgba(26, 60, 52, .07);
    transform: translateY(-2px);
}

.post-card h2 { font-size: 1.2rem; margin-bottom: .5rem; }
.post-card h2 a { color: var(--forest); text-decoration: none; }
.post-card h2 a:hover { color: var(--sage); }
.post-card .excerpt { color: var(--text-light); font-size: .9rem; margin-bottom: .7rem; }

.post-card .meta {
    font-size: .78rem;
    color: var(--text-light);
    display: flex;
    gap: .5rem;
    align-items: center;
    flex-wrap: wrap;
}

.create-banner { max-width: 760px; margin: 2rem auto; padding: 0 2rem; }

.create-banner-inner {
    background: var(--forest);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.create-banner-inner h3 { color: var(--cream); font-size: 1.1rem; }
.create-banner-inner p { color: rgba(255, 255, 255, .5); font-size: .88rem; }

.create-banner-inner a {
    background: var(--amber);
    color: var(--forest);
    padding: .6rem 1.3rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: .88rem;
    text-decoration: none;
    white-space: nowrap;
}

/* --------------------------------------------------------------------------
   22. Blog Creator Page
   -------------------------------------------------------------------------- */
.container { max-width: 900px; margin: 2rem auto; padding: 0 2rem; }
.subtitle { color: var(--text-light); margin-bottom: 2rem; font-size: .92rem; }

label {
    font-weight: 600;
    font-size: .86rem;
    color: var(--forest);
    display: block;
    margin-bottom: .3rem;
}

input, textarea, select {
    width: 100%;
    padding: .65rem .9rem;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: .9rem;
    background: var(--white);
    transition: border-color .3s;
    color: var(--text);
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--sage);
}

textarea { min-height: 100px; resize: vertical; }

.grid { display: grid; gap: 1rem; margin-bottom: 1rem; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.btn-gen {
    background: var(--forest);
    color: var(--cream);
    border: none;
    padding: .9rem 2rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: .95rem;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: all .3s;
    width: 100%;
}

.btn-gen:hover { background: var(--sage); }
.btn-gen:disabled { opacity: .5; cursor: not-allowed; }

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, .3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin .6s linear infinite;
    vertical-align: middle;
}

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

.output { margin-top: 2rem; display: none; }
.output.show { display: block; }

.tabs { display: flex; gap: .4rem; margin-bottom: 1rem; }

.tab {
    padding: .35rem .9rem;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    background: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: .8rem;
    cursor: pointer;
    color: var(--text-light);
}

.tab.on { background: var(--forest); color: var(--cream); border-color: var(--forest); }

.preview {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 1.8rem;
    max-height: 550px;
    overflow-y: auto;
}

.preview h2 { font-size: 1.25rem; margin: 1.5rem 0 .5rem; font-family: 'Fraunces', serif; color: var(--forest); }
.preview h3 { font-size: 1.05rem; margin: 1.2rem 0 .4rem; font-family: 'Fraunces', serif; color: var(--forest); }
.preview p { margin-bottom: 1rem; font-size: .92rem; }
.preview ul { margin: 0 0 1rem 1.5rem; }
.preview li { margin-bottom: .3rem; font-size: .88rem; }
.preview strong { color: var(--forest); }
.preview .kt { background: var(--cream); border: 1px solid var(--border); border-radius: 10px; padding: 1.2rem; margin-bottom: 1.5rem; }
.preview .kt h3 { color: var(--amber); margin: 0 0 .4rem; }

.raw { display: none; }
.raw.show { display: block; }
.raw textarea { height: 300px; font-family: 'Courier New', monospace; font-size: .75rem; line-height: 1.4; }

.actions { display: flex; gap: .5rem; margin-bottom: 1rem; }

.btn-sm {
    padding: .4rem 1rem;
    border-radius: 100px;
    border: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: .8rem;
    cursor: pointer;
}

.btn-copy { background: var(--amber); color: var(--forest); }
.btn-dl { background: var(--sage); color: var(--white); }
.btn-sm:hover { opacity: .85; }

.tips {
    background: rgba(77, 139, 122, .06);
    border: 1px solid rgba(77, 139, 122, .1);
    border-radius: 12px;
    padding: 1.3rem;
    margin-top: 2rem;
}

.tips h3 { font-size: .95rem; color: var(--sage); margin-bottom: .4rem; }
.tips p { font-size: .82rem; color: var(--text-light); margin-bottom: .35rem; }

/* --------------------------------------------------------------------------
   23. Privacy Page
   -------------------------------------------------------------------------- */
.privacy-wrap { max-width: 760px; margin: 0 auto; padding: 3rem 2rem 4rem; }
.privacy-wrap h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: .3rem; }
.updated { color: var(--text-light); font-size: .85rem; margin-bottom: 2rem; }
.privacy-wrap h2 { font-size: 1.15rem; margin: 2rem 0 .5rem; color: var(--forest); }
.privacy-wrap p { margin-bottom: 1rem; font-size: .93rem; }
.privacy-wrap strong { color: var(--forest); }

/* --------------------------------------------------------------------------
   24. Simple Footer (Inner Pages)
   -------------------------------------------------------------------------- */
.footer-simple {
    background: #142F27;
    padding: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, .3);
    font-size: .78rem;
}

.footer-simple a {
    color: rgba(255, 255, 255, .5);
}

/* --------------------------------------------------------------------------
   25. Responsive — Tablet & Mobile
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-desc { margin: 0 auto 2rem; }
    .hero-btns { justify-content: center; }
    .about-layout { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; gap: 2rem; }

    .nav-links { display: none; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cream);
        padding: 1.5rem 2rem;
        gap: 1rem;
        box-shadow: var(--shadow-md);
    }

    .mobile-menu-btn { display: flex; }
}

@media (max-width: 600px) {
    .hero { padding: 7rem 1.25rem 3rem; }
    section { padding: 3.5rem 1.25rem; }
    .svc-grid { grid-template-columns: 1fr; }
    .review-grid { grid-template-columns: 1fr; }
    .areas-grid { grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); }
    .wrap { padding: 0 1.25rem; }
    .art-head { margin-top: 2rem; }
    .row2 { grid-template-columns: 1fr; }
    .container { padding: 0 1.25rem; }
    .privacy-wrap { padding: 2rem 1.25rem; }
}

/* --------------------------------------------------------------------------
   26. Reduced Motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
        animation: none;
    }

    .blob-1, .blob-2 {
        animation: none;
    }

    html {
        scroll-behavior: auto;
    }
}
