/*
Theme Name: Vibe Ottawa Booth
Theme URI: https://thevibephotoboothco.ca/
Author: The Vibe Photobooth Co.
Author URI: https://thevibephotoboothco.ca/
Description: Editorial / soft-luxury WordPress theme for The Vibe Photobooth Co. — Ottawa's premier experiential photo & video activation studio. Built as a one-to-one port of the original React/Vite site, with every homepage block exposed as a reusable Elementor section template so editors can drag, drop and remix the layout. Fully Elementor-compatible (Elementor Pro recommended for theme builder).
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vibe-ottawa-booth
Tags: business, portfolio, elementor, photography, one-column, custom-colors, custom-logo, custom-menu, featured-images, full-width-template, theme-options, threaded-comments, translation-ready
*/

/* -----------------------------------------------------------------
 *  Vibe 360 Design System
 *  Ported from src/index.css (Tailwind + CSS variables)
 *  Modern Editorial · Soft Luxury · Lifestyle-Driven
 * ----------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Core HSL design tokens (mirror of src/index.css) */
    --background: 0 0% 100%;
    --foreground: 0 0% 12%;

    --card: 40 20% 98%;
    --card-foreground: 0 0% 12%;

    --popover: 40 20% 98%;
    --popover-foreground: 0 0% 12%;

    --primary: 0 0% 15%;
    --primary-foreground: 0 0% 98%;

    --secondary: 30 10% 94%;
    --secondary-foreground: 0 0% 20%;

    --muted: 30 5% 92%;
    --muted-foreground: 0 0% 45%;

    --accent: 191 70% 45%;
    --accent-foreground: 0 0% 100%;
    --accent-muted: 191 60% 92%;

    --destructive: 0 65% 50%;
    --destructive-foreground: 0 0% 100%;

    --border: 30 10% 90%;
    --input: 30 10% 90%;
    --ring: 191 70% 45%;

    --radius: 0.75rem;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    --shadow-sm: 0 1px 2px hsl(0 0% 0% / 0.03);
    --shadow-md: 0 4px 12px hsl(0 0% 0% / 0.05);
    --shadow-lg: 0 8px 30px hsl(0 0% 0% / 0.08);
    --shadow-xl: 0 20px 50px hsl(0 0% 0% / 0.1);
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, video, svg { max-width: 100%; height: auto; display: block; }

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

button { font: inherit; cursor: pointer; background: none; border: 0; padding: 0; color: inherit; }

/* -----------------------------------------------------------------
 *  Typography (editorial display)
 * ----------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.15;
    margin: 0 0 0.5em;
    color: hsl(var(--foreground));
}
h1 { font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw + 1rem, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2vw + 1rem, 2.25rem); }
h4 { font-size: clamp(1.25rem, 1vw + 1rem, 1.75rem); }

p { font-size: 1rem; line-height: 1.7; margin: 0 0 1rem; }
@media (min-width: 768px) { p { font-size: 1.125rem; } }

.text-balance { text-wrap: balance; }

/* -----------------------------------------------------------------
 *  Layout helpers (port of Tailwind components)
 * ----------------------------------------------------------------- */
.container-editorial {
    max-width: 80rem;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
@media (min-width: 768px) { .container-editorial { padding: 0 2rem; } }
@media (min-width: 1024px) { .container-editorial { padding: 0 3rem; } }

.section { padding: 4rem 0; }
@media (min-width: 768px) { .section { padding: 6rem 0; } }
@media (min-width: 1024px) { .section { padding: 8rem 0; } }

.section-sm { padding: 3rem 0; }
@media (min-width: 768px) { .section-sm { padding: 4rem 0; } }
@media (min-width: 1024px) { .section-sm { padding: 5rem 0; } }

.bg-primary { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }
.bg-secondary { background: hsl(var(--secondary)); }
.bg-background { background: hsl(var(--background)); }
.bg-accent { background: hsl(var(--accent)); color: hsl(var(--accent-foreground)); }

.text-primary-foreground { color: hsl(var(--primary-foreground)); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.text-accent { color: hsl(var(--accent)); }

/* -----------------------------------------------------------------
 *  Buttons (editorial)
 * ----------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    border: 1px solid transparent;
    white-space: nowrap;
}
.btn-primary { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }
.btn-primary:hover { background: hsl(var(--primary) / 0.85); }
.btn-accent { background: hsl(var(--accent)); color: hsl(var(--accent-foreground)); }
.btn-accent:hover { background: hsl(var(--accent) / 0.9); }
.btn-outline {
    border-color: hsl(var(--border));
    color: hsl(var(--foreground));
    background: transparent;
}
.btn-outline:hover { background: hsl(var(--secondary)); }
.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
}
.btn-outline-light:hover { background: #fff; color: hsl(var(--foreground)); }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }
.btn-amber {
    background: rgba(251, 191, 36, 0.2);
    border: 2px solid rgba(251, 191, 36, 0.8);
    color: #fff;
    backdrop-filter: blur(6px);
}
.btn-amber:hover { background: rgb(251, 191, 36); color: #000; }

/* -----------------------------------------------------------------
 *  Cards / overlays
 * ----------------------------------------------------------------- */
.card-img {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    display: block;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.card-img:hover img { transform: scale(1.05); }
.card-img .overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}
.card-img .overlay-content {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 1.5rem;
    color: #fff;
}

.icon-pill {
    width: 2.5rem; height: 2.5rem;
    border-radius: 0.75rem;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(6px);
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff;
}

/* -----------------------------------------------------------------
 *  Header / nav
 * ----------------------------------------------------------------- */
.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 50;
    transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
    padding: 1.5rem 0;
}
.site-header.is-scrolled {
    background: hsla(var(--background), 0.95);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
}
.site-header.is-home:not(.is-scrolled) {
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
}
.site-header.is-interior:not(.is-scrolled) {
    background: hsl(var(--background));
    border-bottom: 1px solid hsl(var(--border));
    padding: 1rem 0;
}
.site-header .nav-row {
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem;
}
.site-header .site-logo img { height: 3rem; width: auto; transition: filter 0.3s; }
@media (min-width: 768px) { .site-header .site-logo img { height: 3.5rem; } }
.site-header.is-home:not(.is-scrolled) .site-logo img { filter: brightness(0) invert(1); }

.primary-menu {
    display: none;
    list-style: none;
    margin: 0; padding: 0;
    gap: 2rem;
    align-items: center;
}
@media (min-width: 1024px) { .primary-menu { display: flex; } }

.primary-menu li { position: relative; }
.primary-menu a {
    font-size: 0.9rem;
    font-weight: 500;
    color: hsl(var(--muted-foreground));
    transition: color 0.2s;
}
.primary-menu a:hover { color: hsl(var(--foreground)); }
.primary-menu .menu-item-has-children > a::after {
    content: "▾";
    margin-left: 0.25rem;
    font-size: 0.7em;
}
.primary-menu .sub-menu {
    list-style: none;
    margin: 0; padding: 0.5rem 0;
    position: absolute;
    top: 100%; left: 0;
    background: hsl(var(--background));
    border: 1px solid hsl(var(--border));
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    opacity: 0; visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 100;
}
.primary-menu .menu-item-has-children:hover > .sub-menu,
.primary-menu .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.primary-menu .sub-menu a {
    display: block;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}
.primary-menu .sub-menu a:hover {
    background: hsl(var(--muted));
    color: hsl(var(--foreground));
}

.site-header.is-home:not(.is-scrolled) .primary-menu > li > a {
    color: rgba(255,255,255,0.85);
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.site-header.is-home:not(.is-scrolled) .primary-menu > li > a:hover { color: #fff; }
.site-header.is-home:not(.is-scrolled) .header-cta .btn-primary {
    background: #fff;
    color: hsl(var(--foreground));
}

.header-cta { display: none; }
@media (min-width: 1024px) { .header-cta { display: block; } }

.mobile-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 2.5rem; height: 2.5rem;
}
@media (min-width: 1024px) { .mobile-toggle { display: none; } }
.site-header.is-home:not(.is-scrolled) .mobile-toggle { color: #fff; }

.mobile-menu {
    display: none;
    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;
    box-shadow: var(--shadow-lg);
}
.mobile-menu.is-open { display: block; }
.mobile-menu .container-editorial { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.mobile-menu ul { list-style: none; padding: 0; margin: 0; }
.mobile-menu > .container-editorial > ul > li > a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1.125rem;
    font-weight: 500;
    color: hsl(var(--muted-foreground));
}
.mobile-menu .sub-menu { padding-left: 1rem; padding-bottom: 0.5rem; }
.mobile-menu .sub-menu a {
    display: block;
    padding: 0.4rem 0;
    font-size: 1rem;
    color: hsl(var(--muted-foreground));
}

/* Push content below fixed header on interior pages */
body:not(.home) .site-main { padding-top: 5rem; }

/* -----------------------------------------------------------------
 *  Footer
 * ----------------------------------------------------------------- */
.site-footer {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}
.site-footer .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
@media (min-width: 768px) { .site-footer .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .site-footer .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; } }
.site-footer h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: hsl(var(--primary-foreground));
    margin-bottom: 1rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.site-footer a { color: hsla(var(--primary-foreground), 0.8); transition: color 0.2s; }
.site-footer a:hover { color: hsl(var(--primary-foreground)); }
.site-footer .brand-col img { height: 3rem; filter: brightness(0) invert(1); }
.site-footer .brand-col p { color: hsla(var(--primary-foreground), 0.8); margin-top: 1rem; max-width: 24rem; }
.site-footer .footer-bottom {
    margin-top: 4rem; padding-top: 2rem;
    border-top: 1px solid hsla(var(--primary-foreground), 0.2);
    display: flex; flex-direction: column; gap: 1rem;
    justify-content: space-between; align-items: center;
    font-size: 0.875rem;
    color: hsla(var(--primary-foreground), 0.6);
}
@media (min-width: 768px) { .site-footer .footer-bottom { flex-direction: row; } }

.social-links { display: flex; gap: 1rem; margin-top: 1.5rem; }
.social-links a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 2.25rem; height: 2.25rem;
    background: hsla(var(--primary-foreground), 0.1);
    border-radius: 9999px;
    transition: background 0.2s;
}
.social-links a:hover { background: hsla(var(--primary-foreground), 0.2); }

/* -----------------------------------------------------------------
 *  Animations
 * ----------------------------------------------------------------- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-in { animation: fadeIn 0.6s ease-out forwards; }

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.animate-marquee { animation: marquee 60s linear infinite; }
.animate-marquee:hover { animation-play-state: paused; }

@keyframes ping {
    75%, 100% { transform: scale(2); opacity: 0; }
}
.animate-ping { animation: ping 1.5s cubic-bezier(0,0,0.2,1) infinite; }

@keyframes bounceY {
    0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8,0,1,1); }
    50% { transform: translateY(0); animation-timing-function: cubic-bezier(0,0,0.2,1); }
}
.animate-bounce { animation: bounceY 1s infinite; }

/* -----------------------------------------------------------------
 *  Section: Hero
 * ----------------------------------------------------------------- */
.section-hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
}
.section-hero .hero-bg { position: absolute; inset: 0; }
.section-hero .hero-bg video,
.section-hero .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.section-hero .hero-bg::after {
    content: ""; position: absolute; inset: 0;
    background: rgba(0, 0, 0, 0.6);
}
.section-hero .container-editorial { position: relative; z-index: 1; padding-top: 6rem; padding-bottom: 4rem; }
.section-hero h1 { color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,0.4); }
.section-hero .lead {
    margin-top: 1.5rem;
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    max-width: 40rem;
    margin-left: auto; margin-right: auto;
    line-height: 1.6;
}
@media (min-width: 768px) { .section-hero .lead { font-size: 1.5rem; } }
.section-hero .hero-cta-row {
    display: flex; flex-direction: column; gap: 1rem;
    justify-content: center; margin-top: 2.5rem;
}
@media (min-width: 640px) { .section-hero .hero-cta-row { flex-direction: row; } }
.section-hero .hero-cta-row.secondary { margin-top: 1.5rem; gap: 0.75rem; }
.hero-trust {
    display: flex; flex-wrap: wrap; gap: 1rem;
    justify-content: center; margin-top: 4rem;
    font-size: 1rem; color: rgba(255,255,255,0.8);
}
@media (min-width: 640px) { .hero-trust { gap: 2rem; font-size: 1.125rem; } }
.hero-trust .stat { display: flex; align-items: center; gap: 0.5rem; }
.hero-trust .stat strong {
    font-family: var(--font-display);
    font-size: 1.875rem; font-weight: 600; color: #fff;
}
.scroll-indicator {
    position: absolute; bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    display: none;
}
@media (min-width: 640px) { .scroll-indicator { display: flex; } }

/* -----------------------------------------------------------------
 *  Section: Marquee Strip
 * ----------------------------------------------------------------- */
.marquee-strip { padding: 0.5rem 0; overflow: hidden; }
.marquee-strip .marquee-track { display: flex; gap: 0.5rem; }
.marquee-strip .marquee-track > div {
    flex-shrink: 0;
    width: 10rem; aspect-ratio: 3/4;
    border-radius: 0.5rem; overflow: hidden;
}
@media (min-width: 768px) { .marquee-strip .marquee-track > div { width: 14rem; } }
.marquee-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.marquee-strip img:hover { transform: scale(1.05); }

/* -----------------------------------------------------------------
 *  Section: Trust Bar
 * ----------------------------------------------------------------- */
.trust-bar {
    padding: 1.5rem 0;
    background: hsl(var(--secondary));
    border-top: 1px solid hsl(var(--border));
    border-bottom: 1px solid hsl(var(--border));
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}
.trust-bar .row {
    display: flex; flex-wrap: wrap;
    justify-content: center; align-items: center;
    gap: 1rem;
}
@media (min-width: 768px) { .trust-bar .row { gap: 2rem; } }
.trust-bar .row + .row { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid hsl(var(--border)); }
.trust-bar .item { display: inline-flex; align-items: center; gap: 0.5rem; }

/* -----------------------------------------------------------------
 *  Section: Event Types
 * ----------------------------------------------------------------- */
.event-grid {
    display: grid; gap: 1.5rem;
    grid-template-columns: 1fr;
    max-width: 64rem; margin: 0 auto;
}
@media (min-width: 768px) { .event-grid { grid-template-columns: repeat(3, 1fr); } }
.event-grid .event-card { aspect-ratio: 4/5; border-radius: 1rem; }

/* -----------------------------------------------------------------
 *  Section: Services
 * ----------------------------------------------------------------- */
.service-grid {
    display: grid; gap: 1.25rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .service-grid { grid-template-columns: repeat(4, 1fr); } }
.service-grid .service-card { aspect-ratio: 3/4; border-radius: 1rem; }
.service-grid .featured { box-shadow: 0 0 0 2px hsl(var(--accent)); }
.service-grid .badge {
    position: absolute; top: 1rem; left: 1rem;
    padding: 0.25rem 0.75rem; font-size: 0.75rem;
    background: hsl(var(--accent)); color: hsl(var(--accent-foreground));
    border-radius: 9999px; font-weight: 500;
}

/* -----------------------------------------------------------------
 *  Section: FOMO Gallery
 * ----------------------------------------------------------------- */
.fomo-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2rem; gap: 1rem; }
.fomo-head .live-dot {
    position: relative; display: inline-flex;
    width: 0.5rem; height: 0.5rem;
}
.fomo-head .live-dot span {
    position: absolute; inset: 0;
    border-radius: 9999px;
    background: hsl(var(--accent));
}
.fomo-head .live-dot span:first-child { animation: ping 1.5s cubic-bezier(0,0,0.2,1) infinite; opacity: 0.75; }
.fomo-grid {
    display: grid; gap: 0.75rem;
    grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) { .fomo-grid { grid-template-columns: repeat(4, 1fr); } }
.fomo-grid .tile { aspect-ratio: 1/1; border-radius: 0.75rem; overflow: hidden; }
.fomo-grid .tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.fomo-grid .tile:hover img { transform: scale(1.1); }

/* -----------------------------------------------------------------
 *  Section: Trusted-by logos
 * ----------------------------------------------------------------- */
.trusted-logos {
    display: flex; flex-wrap: wrap; align-items: center;
    justify-content: center; gap: 2rem;
}
@media (min-width: 768px) { .trusted-logos { gap: 3rem; } }
.trusted-logos img {
    height: 2.5rem; width: auto; object-fit: contain;
    filter: grayscale(100%); opacity: 0.6;
    transition: filter 0.3s, opacity 0.3s;
}
@media (min-width: 768px) { .trusted-logos img { height: 3rem; } }
.trusted-logos img:hover { filter: grayscale(0); opacity: 1; }

/* -----------------------------------------------------------------
 *  Section: About
 * ----------------------------------------------------------------- */
.about-grid {
    display: grid; gap: 2.5rem;
    grid-template-columns: 1fr;
    align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: repeat(2, 1fr); gap: 4rem; } }
.about-photo { position: relative; }
.about-photo > img {
    border-radius: 1rem; width: 100%; aspect-ratio: 4/5;
    object-fit: cover; object-position: top;
    box-shadow: var(--shadow-xl);
}
.about-photo .badge {
    position: absolute; bottom: 1rem; left: 1rem; right: 1rem;
    background: hsla(var(--background), 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid hsl(var(--border));
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    display: flex; justify-content: space-between; align-items: center; gap: 0.75rem;
    font-size: 0.875rem;
}
.about-feats {
    display: grid; gap: 1rem;
    grid-template-columns: 1fr;
    margin-top: 2rem;
}
@media (min-width: 640px) { .about-feats { grid-template-columns: repeat(2, 1fr); } }
.about-feats .feat { display: flex; align-items: flex-start; gap: 0.75rem; }
.about-feats .feat .ic {
    width: 2rem; height: 2rem;
    background: hsla(var(--accent), 0.1);
    color: hsl(var(--accent));
    border-radius: 0.5rem;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 0.125rem;
}
.eyebrow {
    font-size: 0.875rem; font-weight: 600;
    color: hsl(var(--accent));
    text-transform: uppercase; letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

/* -----------------------------------------------------------------
 *  Section: Testimonials
 * ----------------------------------------------------------------- */
.testimonial-grid {
    display: grid; gap: 1.5rem;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
    padding: 1.5rem;
    border-radius: 1rem;
    background: hsla(var(--primary-foreground), 0.05);
    border: 1px solid hsla(var(--primary-foreground), 0.1);
}
.testimonial-card blockquote {
    font-family: var(--font-display); font-style: italic;
    font-size: 1.125rem; margin: 0 0 1rem;
}
.testimonial-card .stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; color: hsl(var(--accent)); }
.testimonial-card .meta { display: flex; align-items: center; gap: 0.75rem; margin-top: 1rem; }
.testimonial-card .meta .ic {
    width: 2.5rem; height: 2.5rem;
    background: hsla(var(--accent), 0.2);
    border-radius: 9999px;
    display: inline-flex; align-items: center; justify-content: center;
    color: hsl(var(--accent));
}
.testimonial-card .meta strong { display: block; font-size: 0.875rem; }
.testimonial-card .meta small { color: hsla(var(--primary-foreground), 0.6); font-size: 0.75rem; }

.review-pill {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1rem; border-radius: 9999px;
    background: hsla(var(--primary-foreground), 0.1);
    border: 1px solid hsla(var(--primary-foreground), 0.2);
    font-size: 0.875rem; font-weight: 500;
    color: hsl(var(--primary-foreground));
}

/* -----------------------------------------------------------------
 *  Section: FAQ accordion
 * ----------------------------------------------------------------- */
.faq-section { padding: 4rem 0; background: hsl(var(--secondary)); }
@media (min-width: 768px) { .faq-section { padding: 6rem 0; } }
.faq-section .container-editorial { max-width: 56rem; }
.faq-section .head { text-align: center; margin-bottom: 3rem; }
.faq-item { border-bottom: 1px solid hsl(var(--border)); }
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.25rem 0;
    font-size: 1.125rem;
    font-weight: 500;
    display: flex; justify-content: space-between; align-items: center;
    gap: 1rem;
    color: hsl(var(--foreground));
    transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+"; font-size: 1.5rem; line-height: 1; color: hsl(var(--accent));
    transition: transform 0.2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { color: hsl(var(--accent)); }
.faq-item .answer {
    padding-bottom: 1.5rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
}

/* -----------------------------------------------------------------
 *  Section: Final CTA
 * ----------------------------------------------------------------- */
.final-cta { position: relative; overflow: hidden; padding: 6rem 0; text-align: center; color: #fff; }
@media (min-width: 768px) { .final-cta { padding: 8rem 0; } }
.final-cta .bg { position: absolute; inset: 0; }
.final-cta .bg img { width: 100%; height: 100%; object-fit: cover; }
.final-cta .bg::after {
    content: ""; position: absolute; inset: 0;
    background: hsla(var(--primary), 0.9);
}
.final-cta > .container-editorial { position: relative; z-index: 1; }
.final-cta h2 { color: #fff; }
.final-cta .lead { color: rgba(255,255,255,0.8); max-width: 36rem; margin: 1rem auto 0; font-size: 1.125rem; }

.cta-pill {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1rem; border-radius: 9999px;
    background: hsla(var(--accent), 0.2);
    border: 1px solid hsla(var(--accent), 0.4);
    font-size: 0.875rem; font-weight: 500; color: #fff;
    margin-bottom: 1.5rem;
}

/* -----------------------------------------------------------------
 *  Sticky CTA
 * ----------------------------------------------------------------- */
.sticky-cta {
    position: fixed; bottom: 1rem; right: 1rem;
    z-index: 40;
    display: none;
}
@media (min-width: 768px) { .sticky-cta { display: block; } }

/* -----------------------------------------------------------------
 *  Utility helpers (for content/Elementor classes)
 * ----------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-10 { margin-bottom: 2.5rem; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.font-display { font-family: var(--font-display); }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.opacity-80 { opacity: 0.8; }
.text-white { color: #fff; }

/* WP block editor / Gutenberg helpers */
.alignwide { max-width: 80rem; margin-left: auto; margin-right: auto; }
.alignfull { width: 100%; }
.wp-caption, .gallery-caption { color: hsl(var(--muted-foreground)); font-size: 0.85rem; }
.screen-reader-text {
    border: 0; clip: rect(1px,1px,1px,1px); height: 1px; width: 1px;
    margin: -1px; padding: 0; overflow: hidden; position: absolute !important; word-wrap: normal !important;
}
