/* ==========================================================================
   Vibe Activations WordPress Theme — Design System
   Cream · Void · Vermilion
   Display: Bagel Fat One (skewed). Editorial: Caprasimo. Body: Archivo. Mono: Geist Mono.
   ========================================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
    --cream: 41 53% 91%;
    --void: 30 7% 4%;
    --vermilion: 9 79% 49%;

    --background: 41 53% 96%;
    --foreground: var(--void);
    --card: 41 53% 91%;
    --card-foreground: var(--void);
    --popover: 41 53% 96%;
    --popover-foreground: var(--void);
    --primary: var(--void);
    --primary-foreground: var(--cream);
    --secondary: 41 35% 88%;
    --secondary-foreground: var(--void);
    --muted: 41 20% 90%;
    --muted-foreground: 30 7% 30%;
    --accent: var(--vermilion);
    --accent-foreground: var(--cream);
    --accent-muted: 9 79% 92%;
    --destructive: 9 79% 49%;
    --border: 41 20% 84%;
    --input: 41 20% 84%;
    --ring: var(--vermilion);
    --radius: 0.5rem;

    --font-display: 'Bagel Fat One', 'Archivo Black', system-ui, sans-serif;
    --font-editorial: 'Caprasimo', Georgia, serif;
    --font-body: 'Archivo', system-ui, sans-serif;
    --font-mono: 'Geist Mono', 'JetBrains Mono', monospace;

    --shadow-sm: 0 1px 2px hsl(0 0% 0% / 0.04);
    --shadow-md: 0 4px 12px hsl(0 0% 0% / 0.06);
    --shadow-lg: 0 8px 30px hsl(0 0% 0% / 0.10);
    --shadow-xl: 0 20px 50px hsl(0 0% 0% / 0.14);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border: 0 solid hsl(var(--border)); }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
ul, ol { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 0.95;
}
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-family: var(--font-body); font-weight: 900; line-height: 1.02; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.375rem, 2vw, 1.625rem); font-family: var(--font-body); font-weight: 700; line-height: 1.2; }
h4 { font-size: clamp(1.25rem, 1.5vw, 1.5rem); font-family: var(--font-body); font-weight: 700; }
p { font-size: clamp(1rem, 1.1vw, 1.125rem); line-height: 1.7; }

.text-large { font-size: clamp(1.125rem, 1.3vw, 1.25rem); line-height: 1.55; }
.text-balance { text-wrap: balance; }

/* ---------- Layout Utilities ---------- */
.container-editorial { max-width: 1280px; margin: 0 auto; padding-left: 1.5rem; padding-right: 1.5rem; }
@media (min-width: 768px) { .container-editorial { padding-left: 2rem; padding-right: 2rem; } }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
@media (min-width: 768px) { .section { padding: 7.5rem 0; } .section-sm { padding: 4rem 0 5rem; } }
.text-center { text-align: center; }

/* ---------- Eyebrow ---------- */
.caption-mono {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: hsl(var(--accent));
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    line-height: 1;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.btn-accent { background: hsl(var(--accent)); color: hsl(var(--accent-foreground)); }
.btn-accent:hover { background: hsl(var(--accent) / 0.9); transform: translateY(-1px); }
.btn-outline-light { border: 1px solid rgba(255,255,255,0.4); color: #fff; background: transparent; }
.btn-outline-light:hover { background: #fff; color: hsl(var(--foreground)); }
.btn-primary { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }
.btn-primary:hover { opacity: 0.9; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    padding: 1.5rem 0;
}
.site-header[data-scrolled="true"] {
    background: hsl(var(--background) / 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
}
body.home .site-header:not([data-scrolled="true"]) {
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
}
body:not(.home) .site-header:not([data-scrolled="true"]) {
    background: hsl(var(--background));
    border-bottom: 1px solid hsl(var(--border));
    padding: 1rem 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.vibe-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}
.vibe-logo__monogram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    background: hsl(var(--vermilion));
    color: hsl(var(--cream));
    font-family: var(--font-display);
    font-size: 1.25rem;
    padding-top: 0.125rem;
}
.vibe-logo__wordmark {
    font-family: var(--font-display);
    font-size: 1.7rem;
    line-height: 1;
    transform: skewX(-10deg);
    display: inline-block;
}
body.home .site-header:not([data-scrolled="true"]) .vibe-logo__wordmark { color: #fff; }
body:not(.home) .vibe-logo__wordmark,
.site-header[data-scrolled="true"] .vibe-logo__wordmark { color: hsl(var(--foreground)); }
.footer-logo .vibe-logo__wordmark { color: hsl(var(--cream)); }

/* Nav */
.header-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}
@media (min-width: 1024px) { .header-nav { display: flex; } }

.nav-link, .nav-dropdown__trigger {
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
body.home .site-header:not([data-scrolled="true"]) .nav-link,
body.home .site-header:not([data-scrolled="true"]) .nav-dropdown__trigger {
    color: rgba(255,255,255,0.8);
}
body.home .site-header:not([data-scrolled="true"]) .nav-link:hover,
body.home .site-header:not([data-scrolled="true"]) .nav-dropdown__trigger:hover {
    color: #fff;
}
body:not(.home) .nav-link,
body:not(.home) .nav-dropdown__trigger,
.site-header[data-scrolled="true"] .nav-link,
.site-header[data-scrolled="true"] .nav-dropdown__trigger {
    color: hsl(var(--muted-foreground));
}
body:not(.home) .nav-link:hover,
body:not(.home) .nav-dropdown__trigger:hover,
.site-header[data-scrolled="true"] .nav-link:hover,
.site-header[data-scrolled="true"] .nav-dropdown__trigger:hover {
    color: hsl(var(--foreground));
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown__chevron { width: 1rem; height: 1rem; transition: transform 0.2s; }
.nav-dropdown:hover .nav-dropdown__chevron { transform: rotate(180deg); }
.nav-dropdown__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 0.5rem;
    min-width: 220px;
}
.nav-dropdown:hover .nav-dropdown__menu { display: block; }
.nav-dropdown__menu > div,
.nav-dropdown__menu {
    background: hsl(var(--background));
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid hsl(var(--border));
    padding: 0.5rem 0;
    animation: fadeIn 0.2s ease;
}
.nav-dropdown__item {
    display: block;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    transition: all 0.15s;
}
.nav-dropdown__item:hover {
    color: hsl(var(--foreground));
    background: hsl(var(--muted));
}

/* Header CTA */
.header-cta { display: none; }
@media (min-width: 1024px) { .header-cta { display: inline-flex; } }
body.home .site-header:not([data-scrolled="true"]) .header-cta {
    background: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
}

/* Mobile Menu */
.mobile-menu-toggle { display: block; }
@media (min-width: 1024px) { .mobile-menu-toggle { display: none; } }
body.home .site-header:not([data-scrolled="true"]) .mobile-menu-toggle { color: #fff; }

.mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: hsl(var(--background));
    border-bottom: 1px solid hsl(var(--border));
    max-height: 80vh;
    overflow-y: auto;
    animation: fadeIn 0.2s ease;
}
@media (min-width: 1024px) { .mobile-nav { display: none !important; } }
.mobile-nav__inner { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-nav__heading {
    width: 100%;
    text-align: left;
    padding: 0.75rem 0;
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 1px solid hsl(var(--border));
}
.mobile-nav__submenu { padding-left: 1rem; display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav__link {
    display: block;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}
.mobile-nav__link:hover { color: hsl(var(--foreground)); }
.mobile-nav__link--top { font-weight: 500; font-size: 1rem; padding: 0.75rem 0; color: hsl(var(--foreground)); }
.mobile-nav__cta { margin-top: 1rem; width: 100%; text-align: center; }

/* Main content offset for fixed header */
#main-content { padding-top: 0; }
body.home #main-content { padding-top: 0; }
body:not(.home) #main-content { padding-top: 80px; }

/* ---------- Hero Section ---------- */
.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: hsl(var(--foreground));
}
@media (min-width: 768px) { .hero-section { min-height: 85vh; } }
.hero-video, .hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.30));
}
.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 8rem;
    padding-bottom: 4rem;
    max-width: 48rem;
}
.hero-eyebrow { color: hsl(var(--accent)); }
.hero-headline {
    font-family: var(--font-display);
    font-style: italic;
    color: #fff;
    line-height: 0.95;
    letter-spacing: -0.02em;
    transform: skewX(-6deg);
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    margin-top: 1.25rem;
    text-wrap: balance;
}
.hero-subhead {
    margin-top: 1.5rem;
    max-width: 42rem;
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
    color: rgba(255,255,255,0.9);
    line-height: 1.55;
}
.hero-actions {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media (min-width: 640px) { .hero-actions { flex-direction: row; } }
.hero-trust { margin-top: 2.5rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; }
.hero-trust__rating { display: flex; align-items: center; gap: 0.5rem; }
.hero-trust__rating span { font-size: 0.875rem; color: rgba(255,255,255,0.8); letter-spacing: 0.05em; }

/* ---------- Star Rating ---------- */
.star-rating { display: inline-flex; gap: 0.125rem; color: hsl(var(--accent)); }
.star-rating .star { width: 1rem; height: 1rem; }
.star-rating .star.filled { fill: currentColor; }

/* ---------- Client Logos Strip ---------- */
.logos-strip { border-top: 1px solid hsl(var(--border)); border-bottom: 1px solid hsl(var(--border)); background: hsl(var(--secondary)); }
.logos-scroll {
    display: flex;
    align-items: center;
    gap: 2rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 0;
    margin: 0 -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
@media (min-width: 768px) {
    .logos-scroll { flex-wrap: wrap; justify-content: center; gap: 3rem; overflow: visible; margin: 0; padding: 0; }
}
.logo-client {
    flex-shrink: 0;
    height: 2.25rem;
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.6;
    transition: all 0.3s;
}
.logo-client:hover { filter: grayscale(0); opacity: 1; }
@media (min-width: 768px) { .logo-client { height: 3rem; } }

/* ---------- Section Backgrounds ---------- */
.bg-void { background: hsl(var(--void)); color: hsl(var(--cream)); }
.bg-cream { background: hsl(var(--cream)); }
.bg-secondary { background: hsl(var(--secondary)); }
.bg-primary { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }
.bg-accent { background: hsl(var(--accent)); color: hsl(var(--accent-foreground)); }
.text-cream { color: hsl(var(--cream)); }

/* ---------- Problem Section ---------- */
.problem-section { background: hsl(var(--secondary)); }
.problem-grid {
    display: grid;
    gap: 2rem;
}
@media (min-width: 1024px) {
    .problem-grid { grid-template-columns: 5fr 6fr; gap: 3rem; }
}
.problem-content p { font-size: clamp(1.125rem, 1.3vw, 1.25rem); line-height: 1.55; color: hsl(var(--muted-foreground)); margin-top: 1.25rem; }

/* ---------- Solution Triplet ---------- */
.solution-section .solution-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}
@media (min-width: 768px) { .solution-section .solution-grid { grid-template-columns: repeat(3, 1fr); } }
.solution-card {
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid hsl(var(--border));
    background: hsl(var(--card));
    transition: all 0.2s;
}
.solution-card:hover { transform: translateY(-4px); border-color: hsl(var(--accent)); box-shadow: var(--shadow-lg); }
.solution-number {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(var(--accent));
    line-height: 1;
}
.solution-card h3 { margin-top: 1.5rem; }
.solution-card p { margin-top: 0.75rem; font-size: 1rem; line-height: 1.55; color: hsl(var(--muted-foreground)); }
.bg-void .solution-card { background: hsl(30 7% 8%); border-color: hsl(30 7% 16%); }
.bg-void .solution-card p { color: hsl(var(--cream) / 0.65); }

/* ---------- Formats Grid ---------- */
.formats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}
@media (min-width: 1024px) { .formats-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
.format-card {
    display: block;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid hsl(var(--border));
    background: hsl(var(--card));
    transition: all 0.2s;
}
.format-card:hover { transform: translateY(-4px); border-color: hsl(var(--accent)); box-shadow: var(--shadow-lg); }
.format-card__image { aspect-ratio: 16/10; overflow: hidden; background: hsl(var(--muted)); }
.format-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.format-card:hover .format-card__image img { transform: scale(1.04); }
.format-card__content { padding: 1.25rem; }
.format-card__content h3 { font-size: 1.125rem; transition: color 0.2s; }
.format-card:hover .format-card__content h3 { color: hsl(var(--accent)); }
.format-card__content p { margin-top: 0.5rem; font-size: 0.875rem; color: hsl(var(--muted-foreground)); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.section-subhead { margin-top: 1.25rem; font-size: clamp(1rem, 1.1vw, 1.125rem); color: hsl(var(--muted-foreground)); max-width: 42rem; }

/* ---------- Industries Grid ---------- */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}
@media (min-width: 768px) { .industries-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .industries-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
.industry-card {
    display: block;
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 1rem;
    overflow: hidden;
}
.industry-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.industry-card:hover img { transform: scale(1.05); }
.industry-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.3) 50%, transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
}
.industry-card__overlay h3 { color: #fff; font-size: clamp(1.125rem, 1.3vw, 1.25rem); }

/* ---------- Why Vibe / Alternating ---------- */
.why-grid { display: flex; flex-direction: column; gap: 4rem; margin-top: 3rem; }
@media (min-width: 768px) { .why-grid { gap: 6rem; } }
.why-card { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 1024px) { .why-card { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.why-card:nth-child(even) .why-card__image { order: -1; }
@media (min-width: 1024px) { .why-card:nth-child(even) .why-card__image { order: 1; } .why-card:nth-child(even) > *:first-child { order: 2; } }
.why-card__image { aspect-ratio: 4/3; border-radius: 1rem; overflow: hidden; background: hsl(var(--muted)); }
.why-card__image img { width: 100%; height: 100%; object-fit: cover; }
.why-card h3 { font-size: clamp(1.5rem, 2vw, 2rem); }
.why-card p { margin-top: 1rem; font-size: clamp(1.0625rem, 1.2vw, 1.125rem); line-height: 1.6; color: hsl(var(--muted-foreground)); }

/* ---------- Process Section ---------- */
.process-section { background: hsl(var(--void)); color: hsl(var(--cream)); }
.process-steps {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}
@media (min-width: 768px) { .process-steps { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
.process-step__number {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: hsl(var(--accent));
}
.process-step h3 { margin-top: 0.75rem; font-size: 1.375rem; }
.process-step p { margin-top: 0.75rem; font-size: 0.9375rem; line-height: 1.55; color: hsl(var(--cream) / 0.65); }

/* ---------- Testimonials ---------- */
.testimonials-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid hsl(var(--border));
    background: hsl(var(--card));
}
.testimonial-card blockquote {
    margin-top: 1rem;
    font-family: var(--font-editorial);
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.5;
}
.testimonial-author { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid hsl(var(--border)); }
.testimonial-author strong { display: block; font-size: 0.875rem; }
.testimonial-author span { font-size: 0.75rem; color: hsl(var(--muted-foreground)); }

/* ---------- FAQ Section ---------- */
.faq-list { max-width: 48rem; }
.faq-item { border-bottom: 1px solid hsl(var(--border)); }
.faq-item:first-child { border-top: 1px solid hsl(var(--border)); }
.faq-question {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem 0;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { content: ''; }
.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    line-height: 1;
    color: hsl(var(--accent));
    flex-shrink: 0;
    transition: transform 0.2s;
}
.faq-item[open] .faq-question::after { transform: rotate(45deg); }
.faq-item[open] .faq-question { color: hsl(var(--accent)); }
.faq-answer { padding-bottom: 1.5rem; }
.faq-answer p { font-size: 1rem; line-height: 1.6; color: hsl(var(--muted-foreground)); padding-right: 3rem; }

/* ---------- Final CTA ---------- */
.final-cta-section { background: hsl(var(--void)); color: hsl(var(--cream)); }
.final-cta-section h2 { color: hsl(var(--cream)); }
.final-cta-section p { color: hsl(var(--cream) / 0.7); }
.cta-actions { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; justify-content: center; }
@media (min-width: 640px) { .cta-actions { flex-direction: row; } }

/* ---------- Footer ---------- */
.site-footer { background: hsl(var(--void)); color: hsl(var(--cream)); }
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; } }
.footer-tagline { margin-top: 1.5rem; color: hsl(var(--cream) / 0.7); max-width: 20rem; line-height: 1.6; }
.footer-heading {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: hsl(var(--cream) / 0.5);
    margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
    font-size: 0.875rem;
    color: hsl(var(--cream) / 0.7);
    transition: color 0.2s;
}
.footer-links a:hover { color: hsl(var(--cream)); }
.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid hsl(var(--cream) / 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-bottom p { font-size: 0.875rem; color: hsl(var(--cream) / 0.5); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.875rem; color: hsl(var(--cream) / 0.5); transition: color 0.2s; }
.footer-legal a:hover { color: hsl(var(--cream)); }
.footer-location { display: flex; align-items: center; gap: 0.375rem; }
.footer-contact-info { margin-top: 1rem; }
.footer-phone { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: hsl(var(--cream) / 0.7); transition: color 0.2s; }
.footer-phone:hover { color: hsl(var(--cream)); }

/* Social Links */
.social-links { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    border: 1px solid hsl(var(--cream) / 0.2);
    color: hsl(var(--cream) / 0.7);
    transition: all 0.2s;
}
.social-link:hover { border-color: hsl(var(--cream) / 0.5); color: hsl(var(--cream)); }
.social-icon { width: 1.125rem; height: 1.125rem; }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
    padding: 6rem 0 3rem;
    background: hsl(var(--secondary) / 0.3);
    text-align: center;
}
@media (min-width: 768px) { .page-hero { padding: 8rem 0 4rem; } }
.page-hero h1 { margin-top: 1rem; }
.page-hero .subtitle { margin-top: 1rem; font-size: clamp(1rem, 1.2vw, 1.25rem); color: hsl(var(--muted-foreground)); max-width: 36rem; margin-left: auto; margin-right: auto; }

/* ---------- Blog ---------- */
.blog-grid {
    display: grid;
    gap: 1.5rem;
}
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.blog-card {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid hsl(var(--border));
    background: hsl(var(--card));
    transition: all 0.2s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card__image { aspect-ratio: 16/10; overflow: hidden; background: hsl(var(--muted)); }
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card__image img { transform: scale(1.04); }
.blog-card__content { padding: 1.5rem; }
.blog-card__meta { font-size: 0.75rem; color: hsl(var(--muted-foreground)); }
.blog-card__title { margin-top: 0.5rem; font-size: 1.25rem; line-height: 1.3; }
.blog-card__excerpt { margin-top: 0.5rem; font-size: 0.875rem; color: hsl(var(--muted-foreground)); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* Blog content (single post) */
.blog-content h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 2vw, 1.875rem); margin-top: 3.5rem; margin-bottom: 1.5rem; line-height: 1.15; }
.blog-content h2:first-child { margin-top: 0; }
.blog-content h3 { font-family: var(--font-display); font-size: clamp(1.25rem, 1.5vw, 1.5rem); margin-top: 2.5rem; margin-bottom: 1rem; }
.blog-content p { font-size: clamp(1rem, 1.1vw, 1.125rem); color: hsl(var(--muted-foreground)); margin-bottom: 1.5rem; line-height: 1.8; }
.blog-content strong { color: hsl(var(--foreground)); font-weight: 600; }
.blog-content a { color: hsl(var(--accent)); }
.blog-content a:hover { text-decoration: underline; }
.blog-content ul, .blog-content ol { margin: 2rem 0; padding-left: 1.5rem; }
.blog-content ul { list-style: disc; }
.blog-content ol { list-style: decimal; }
.blog-content li { font-size: clamp(1rem, 1.1vw, 1.125rem); color: hsl(var(--muted-foreground)); padding-bottom: 1rem; line-height: 1.8; }
.blog-content blockquote { border-left: 4px solid hsl(var(--accent)); padding-left: 1.5rem; margin: 2.5rem 0; font-style: italic; color: hsl(var(--muted-foreground)); }
.blog-content img { border-radius: 0.75rem; margin: 2.5rem 0; width: 100%; box-shadow: var(--shadow-md); }

/* ---------- Contact Form ---------- */
.contact-grid {
    display: grid;
    gap: 3rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 2fr; } }
.contact-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-card {
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid hsl(var(--border));
    background: hsl(var(--card));
}
.contact-info-card h3 { font-size: 1rem; margin-top: 0.75rem; }
.contact-info-card p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); margin-top: 0.25rem; }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.875rem; font-weight: 600; }
.form-input, .form-textarea, .form-select {
    padding: 0.75rem 1rem;
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    background: hsl(var(--background));
    font-family: var(--font-body);
    font-size: 1rem;
    color: hsl(var(--foreground));
    transition: border-color 0.2s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none;
    border-color: hsl(var(--accent));
    box-shadow: 0 0 0 3px hsl(var(--accent) / 0.1);
}
.form-textarea { min-height: 150px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ---------- Portfolio ---------- */
.portfolio-grid {
    display: grid;
    gap: 1.5rem;
}
@media (min-width: 768px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.portfolio-card { border-radius: 1rem; overflow: hidden; }
.portfolio-card__image { aspect-ratio: 3/2; overflow: hidden; background: hsl(var(--muted)); position: relative; }
.portfolio-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.portfolio-card:hover .portfolio-card__image img { transform: scale(1.04); }
.portfolio-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}
.portfolio-card:hover .portfolio-card__overlay { opacity: 1; }
.portfolio-card__overlay h3 { color: #fff; font-size: 1.125rem; }
.portfolio-card__overlay p { color: rgba(255,255,255,0.8); font-size: 0.875rem; margin-top: 0.25rem; }

/* Filter buttons */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.filter-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid hsl(var(--border));
    background: transparent;
    color: hsl(var(--muted-foreground));
    transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active { background: hsl(var(--foreground)); color: hsl(var(--primary-foreground)); border-color: hsl(var(--foreground)); }

/* ---------- Stats Bar ---------- */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
@media (min-width: 768px) { .stats-bar { grid-template-columns: repeat(4, 1fr); } }
.stat-item { text-align: center; }
.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-style: italic;
    transform: skewX(-6deg);
    display: inline-block;
}
.stat-label {
    margin-top: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: hsl(var(--muted-foreground));
}

/* ---------- Metric Strip (accent bg) ---------- */
.metric-strip { background: hsl(var(--accent)); color: hsl(var(--accent-foreground)); padding: 4rem 0 5rem; }
.metric-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
}
@media (min-width: 768px) { .metric-grid { grid-template-columns: repeat(4, 1fr); } }
.metric-number {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 0.95;
    transform: skewX(-6deg);
    display: inline-block;
}
.metric-label {
    margin-top: 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* ---------- Specs Block ---------- */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: hsl(var(--border));
    border-radius: 1rem;
    overflow: hidden;
    margin-top: 2rem;
}
@media (min-width: 768px) { .specs-grid { grid-template-columns: repeat(4, 1fr); } }
.spec-cell {
    background: hsl(var(--background));
    padding: 1.5rem 2rem;
}
.spec-cell__label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: hsl(var(--muted-foreground));
}
.spec-cell__value {
    margin-top: 0.75rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: clamp(1.375rem, 1.8vw, 1.625rem);
    line-height: 1.15;
}
.addons-bar { margin-top: 2rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; }
.addon-tag {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    font-size: 0.875rem;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { padding: 1rem 0; }
.breadcrumb-list {
    display: flex;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-family: var(--font-mono);
    color: hsl(var(--muted-foreground));
}
.breadcrumb-list li::after { content: ' / '; margin-left: 0.5rem; }
.breadcrumb-list li:last-child::after { content: ''; }
.breadcrumb-list a { color: hsl(var(--muted-foreground)); transition: color 0.2s; }
.breadcrumb-list a:hover { color: hsl(var(--foreground)); }

/* ---------- Pricing Embed ---------- */
.pricing-embed { max-width: 1180px; margin: 0 auto; }
.pricing-embed iframe { width: 100%; border: 0; border-radius: 1rem; }

/* ---------- 404 Page ---------- */
.page-404 {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1.5rem;
}
.page-404 h1 { font-size: clamp(4rem, 10vw, 8rem); font-style: italic; transform: skewX(-6deg); }
.page-404 p { margin-top: 1rem; font-size: 1.25rem; color: hsl(var(--muted-foreground)); }
.page-404 .btn { margin-top: 2rem; }

/* ---------- Prose (for legal pages) ---------- */
.prose { max-width: 48rem; margin: 0 auto; }
.prose h2 { margin-top: 3rem; margin-bottom: 1rem; }
.prose h3 { margin-top: 2rem; margin-bottom: 0.75rem; }
.prose p { margin-bottom: 1.25rem; color: hsl(var(--muted-foreground)); line-height: 1.8; }
.prose ul, .prose ol { margin: 1.5rem 0; padding-left: 1.5rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 0.5rem; color: hsl(var(--muted-foreground)); line-height: 1.7; }
.prose strong { color: hsl(var(--foreground)); }
.prose a { color: hsl(var(--accent)); }
.prose a:hover { text-decoration: underline; }

/* ---------- Animations ---------- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeIn 0.6s ease-out forwards; }
.fade-in-up { animation: fadeInUp 0.8s ease-out forwards; }
[data-animate] { opacity: 0; transform: translateY(40px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
[data-animate].visible { opacity: 1; transform: translateY(0); }

/* ---------- Utility ---------- */
.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; }
.card-hover { transition: all 0.3s; }
.card-hover:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

/* ---------- WP-specific ---------- */
.alignwide { max-width: 1280px; margin-left: auto; margin-right: auto; }
.alignfull { width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; }
.wp-block-image { margin: 2rem 0; }
.wp-block-image img { border-radius: 0.75rem; }

/* ---------- Embed Container ---------- */
.embed-container { position: relative; border-radius: 1rem; overflow: hidden; background: hsl(var(--cream)); padding: 0.25rem; box-shadow: var(--shadow-xl); }
.embed-container iframe { width: 100%; display: block; border-radius: 0.75rem; background: transparent; border: 0; }

/* ---------- Gallery Block (visual) ---------- */
.visual-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}
@media (min-width: 768px) {
    .visual-gallery { grid-template-columns: repeat(8, 1fr); gap: 1rem; }
}
.visual-gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background: hsl(var(--secondary));
}
.visual-gallery__item img,
.visual-gallery__item video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.visual-gallery__item--sm { grid-column: span 2; aspect-ratio: 4/3; }
.visual-gallery__item--md { grid-column: span 2; aspect-ratio: 4/5; }
.visual-gallery__item--lg { grid-column: span 4; grid-row: span 2; aspect-ratio: 4/5; }
.visual-gallery__item--tall { grid-column: span 2; grid-row: span 2; aspect-ratio: 3/4; }
.visual-gallery__item--wide { grid-column: span 4; aspect-ratio: 16/9; }
@media (min-width: 768px) {
    .visual-gallery__item--lg { aspect-ratio: auto; }
    .visual-gallery__item--tall { aspect-ratio: auto; }
}

/* CTA embed section */
.cta-embed-grid {
    display: grid;
    gap: 3rem;
}
@media (min-width: 1024px) { .cta-embed-grid { grid-template-columns: 5fr 7fr; gap: 4rem; align-items: start; } }
.cta-steps { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.cta-step { display: flex; gap: 1rem; }
.cta-step__number { font-family: var(--font-mono); font-size: 0.875rem; color: hsl(var(--accent)); flex-shrink: 0; margin-top: 0.125rem; }
.cta-step__title { font-size: 0.9375rem; font-weight: 600; color: hsl(var(--cream)); }
.cta-step__body { font-size: 0.875rem; color: hsl(var(--cream) / 0.6); }
