/**
 * \===========================================================
 * SHARED STYLES — Base Styles for All Pages
 * \===========================================================
 * 
 * PURPOSE:
 *     This file contains the global CSS foundation shared across
 *     all pages of the website. It provides:
 * 
 *        1. CSS custom properties (variables) for theming
 *        2. Dark mode toggle (comment/uncomment)
 *        3. Base element styles (html, body, headings, paragraphs)
 *        4. Button styles with hover/active states
 *        5. Section layouts (hero, social proof, testimonials, etc.)
 *        6. Form styles and animations
 *        7. Footer styles
 *        8. Scroll-triggered animation classes
 *        9. Responsive breakpoints
 * 
 * DEPENDENCIES:
 *     None — This is the first CSS file loaded.
 *     All other CSS files reference its variables.
 */

/*--------------------------------------------------*/
/* SHARED STYLES — Base styles for all pages         */
/*--------------------------------------------------*/

/* \===========================================================
   CSS VARIABLES — Design Tokens
   \===========================================================
   All colors, spacing, and typography values are defined
   here as CSS custom properties. Change these to re-theme
   the entire site.
   
   LIGHT MODE (default):
       --primary-color: #0d0d0d         — Text/headings (near-black)
       --secondary-color: #5a5a5a       — Body text (gray)
       --background-color: #ffffff      — Page background
       --accent-color: #1a73e8          — Buttons, links (blue)
       --surface-color: #f8f9fa         — Card backgrounds (light gray)
       --border-color: #dee2e6          — Borders, dividers
       --accent-secondary: #f5a623      — Secondary accent (orange)
       --gradient-primary: ...          — Primary gradient
   
   DARK MODE (uncomment to enable):
       --primary-color: #ffffff         — Text/headings (white)
       --secondary-color: #cccccc       — Body text (light gray)
       --background-color: #0d0d0d      — Page background (near-black)
       --surface-color: #1a1a1a         — Card backgrounds (dark gray)
       --border-color: #333333          — Borders (dark gray)
   
   TO TOGGLE DARK MODE:
       Comment out the light mode block (lines 7-14)
       Uncomment the dark mode block (lines 17-23)
   \===========================================================
   */

/* Brand typeface: Outfit (Google Fonts, OFL — free for commercial use).
   Replaces Futura PT. Must precede all style rules. */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap');

:root {
      /* Light Mode (default) - Comment out to disable */
      --primary-color: #0d0d0d;
      --secondary-color: #5a5a5a;
      --background-color: #ffffff;
      --accent-color: #1a73e8;
      --surface-color: #f8f9fa;
      --border-color: #dee2e6;
      --accent-secondary: #f5a623;
      --gradient-primary: linear-gradient(135deg, #e8732a, #f5a623);

      /* Dark Mode - Comment out to disable */
      /* --primary-color: #ffffff;
      --secondary-color: #cccccc;
      --background-color: #0d0d0d;
      --accent-color: #1a73e8;
      --surface-color: #1a1a1a;
      --border-color: #333333; */
  }

/* \===========================================================
   BASE ELEMENTS — html, body, headings, paragraphs
   \===========================================================
   These styles apply to root HTML elements globally.
   All pages inherit these base styles.
   \===========================================================
   */

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Body: font, colors, line-height, font smoothing */
body {
    margin: 0;
    font-family: "Outfit", system-ui, sans-serif;
    background-color: var(--background-color);
    color: var(--primary-color);
    line-height: 1.3;
      -webkit-font-smoothing: antialiased;
}

/* Container: centered max-width wrapper */
/* Used by most page sections for content alignment */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Headings: shared styles for h1-h3 */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
}

/* h1: Hero heading size */
h1 { font-size: 2.8rem; margin-bottom: 1rem; }

/* h2: Section heading size (centered, bold) */
h2 { 
    font-size: 3.5rem; 
    margin-bottom: 2rem; 
    text-align: center;
    font-weight: 700;
    color: var(--primary-color);
}

/* h3: Subsection heading size */
h3 { font-size: 1.5rem; }

/* Paragraphs: secondary color, spacing */
p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* \===========================================================
   BUTTONS — .btn, .hero .btn, .btn-secondary
   \===========================================================
   Base button with hover/active states.
   Hero buttons have gradient + glow effects.
   Secondary buttons disable aura animation.
   
   ANIMATION STRATEGY:
   - Pulse (idle): Applied to ::before to keep main element free for hover.
   - Aura (hover): Applied to ::after for glow effect.
   - Transform/Color (hover): Applied directly to the .btn class.
   \===========================================================
   */

/* 
   Pulse animation for the button itself (idle breathing)
   TWEAK HERE: Increase scale (e.g., 1.01) or shadow (e.g., 25px) to make it more obvious.
*/
@keyframes btn-idle-pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(178, 181, 240, 0.671);
        transform: scale(1.);
    }
    50% {
        box-shadow: 0 4px 24px rgba(35, 124, 220, 0.864);
        transform: scale(1.003);
    }
}

/* Aura pulse animation for the glow effect on hover */
@keyframes btn-aura-pulse {
     0%, 100% { box-shadow: 0 0 10px 3px rgba(26, 115, 232, 0.4), 0 0 20px 8px rgba(255, 255, 255, 0.15); }
     50%   { box-shadow: 0 0 22px 8px rgba(33, 119, 231, 0.7), 0 0 36px 14px rgba(255, 255, 255, 0.254); }
}

/* Base button styles */
.btn {
    display: inline-block;
    position: relative;
    padding: 12px 28px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    z-index: 1;
}

/* 
   Idle Pulse Pseudo-element: Separated to allow concurrent hover animations.
   TWEAK SPEED HERE: Change '4s' to '3s' for faster, or '5s' for slower breathing.
*/
.btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 5px;
    z-index: -1;
    animation: btn-idle-pulse 3s ease-in-out infinite;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* Hover Aura Pseudo-element: Intense glow on hover */
.btn::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 5px;
    z-index: -1;
    opacity: 0;
    animation: btn-aura-pulse 1.6s ease-in-out infinite;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* Hero CTA button — gradient styling */
.hero .btn {
    background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
}

/* General button hover */
.btn:hover {
    background-color: #1765c6;
    transform: translateY(-3px);
}

/* Show aura on hover */
.btn:hover::after {
    opacity: 1;
}

/* Keep pulse active on hover as requested */
.btn:hover::before {
    opacity: 1;
}

/* Hero button hover: reverse gradient + lift */
.hero .btn:hover {
    background: linear-gradient(135deg, #1557b0 0%, #1a73e8 100%);
    box-shadow: 0 6px 25px rgba(26, 115, 232, 0.4);
}

/* No aura or pulse on static buttons */
.btn-secondary::after,
.btn-secondary::before {
    display: none !important;
}

/* Secondary button styling - static */
.btn-secondary {
    background-color: var(--accent-color);
    color: white !important;
    border: 1px solid var(--border-color);
    animation: none !important;
}

.btn-secondary:hover {
    animation: none;
    box-shadow: none !important;
    background-color: #1765c6;
}


/* Button pressed state */
.btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(26, 115, 232, 0.3);
}

/* \===========================================================
   SECTIONS — Base section + Hero section
   \===========================================================
   .hero: Landing page hero with profile photo, headline,
          subheadline, bullet points, CTA button.
          Includes animated gradient overlay.
   \===========================================================
   */

/* Default section padding (80px top/bottom) */
section {
    padding: 80px 0;
}

/* Hero section: professional subtle light blue gradient background */
.hero {
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(350deg, #c6cefa6a 0%, #ffffff 100%);
}

/* Ensure hero content sits above the gradient overlay */
.hero .container {
    position: relative;
    z-index: 1;
}

/* Hero container: flex column, centered */
.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hero content wrapper: max-width constraint */
.hero-content {
    max-width: 800px;
}

/* Hero buttons layout (used on home page) */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 2rem;
}

/* Hero profile image: rounded, shadow */
.hero img {
    max-width: 250px;
    border-radius: 4%;
    margin-bottom: -0.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Hero subheadline: secondary color, centered */
.hero-subheadline {
    font-size: 1.3rem;
    color: var(--secondary-color);
    max-width: 650px;
    margin: 0 auto 2rem auto;
}

/* Hero text is always visible — no entrance animation */
.hero h1,
.hero .hero-subheadline {
    opacity: 1;
}

/* Scroll indicator text (below hero) */
.hero .scroll-indicator span {
    font-size: 0.75rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Scroll indicator bounce animation */
@keyframes scrollBounce {
      0%, 100% {
        transform: translateY(0);
        opacity: 0.6;
      }
      50% {
        transform: translateY(10px);
        opacity: 1;
      }
}

/* Hero bullet list (checkmarks + text) */
.hero-bullets {
    list-style: none;
    padding: 0;
    margin: -1.2rem 0;
    display: inline-flex;
    flex-direction: column;
    gap: 0.6rem;
    text-align: left;
    max-width: 500px;
}

.hero-bullets li {
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.hero-bullets svg {
    color: var(--accent-color);
    margin-right: 10px;
    flex-shrink: 0;
}

/* Hero CTA button spacing */
.hero-cta-button {
    margin-top: 2rem;
}

/* \===========================================================
   SOCIAL PROOF — Logos, sync section
   \===========================================================
   .social-proof: Section showing artist/label logos
   .logos: Flex wrap container for logo images
   .sync-success: Alternative logo section styling
   \===========================================================
   */

/* Social proof section: light background */
.social-proof {
    padding: 20px 0;
    background-color: var(--surface-color);
}

/* Social proof heading: uppercase, small */
.social-proof h3 {
    text-align: center;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Social proof subtext: italic, muted */
.social-proof p {
    text-align: center;
    color: var(--secondary-color);
    font-size: 0.75rem;
    font-style: italic;
    opacity: 0.75;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

/* Sync success section (alternative layout) */
.sync-success {
    padding: 30px 0;
}

.sync-success h3 {
        text-align:center;
        color: var(--secondary-color);
        font-weight: 500;
        margin-bottom: 2rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.9rem;
}

/* Logos grid: flex wrap, centered */
.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

/* Logo images: square, rounded, shadow */
.logos img {
    max-height: 120px;
    width: 120px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

/* Logo hover: scale up */
.logos img:hover {
    transform: scale(1.05);
}

/* Poster images (movie posters in sync sections) — override square album art defaults */
#sync .logos img,
.sync-success .logos img {
    width: auto;
    max-height: 170px;
    object-fit: contain;
}

/* \===========================================================
   TESTIMONIALS — Quote cards, author info
   \===========================================================
   .testimonials: Section wrapper
   .testimonial-card: Individual quote card
   .quote-headline: Bold opening line (with quote mark)
   .quote-body: Body text (with closing quote mark)
   .testimonial-author: Author photo + name
   \===========================================================
   */

/* Testimonials section: white background */
.testimonials {
    padding: 20px 0;
    background-color: var(--background-color);
}

/* Testimonial grid: 2 columns */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

/* Testimonial card: bordered, shadow, hover lift */
.testimonial-card {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

/* Testimonial card hover: lift + deeper shadow */
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* Quote headline: bold, left quote mark */
.testimonial-card .quote-headline {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 30px;
}

/* Quote body: italic, right quote mark */
.testimonial-card .quote-body {
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-right: 30px;
}

/* Thank you header (separate section) */
.thank-you-header {
    padding: 80px 0;
    text-align: center;
    background-color: var(--surface-color);
}

/* Shared quote mark styles (pseudo-elements) */
/* .quote-headline::before → Opening quote (left) */
/* .quote-body::after → Closing quote (right) */
.quote-headline::before,
.quote-body::after {
    content: '"';
    position: absolute;
    font-size: 1.9rem;
    font-weight: 400;
    color: var(--accent-color);
    font-family: Georgia, serif;
    font-style: normal;
    line-height: 1;
}

.quote-headline::before {
    left: 0;
    top: 0;
}

.quote-body::after {
    right: 0;
    bottom: 0;
}

/* Testimonial author: photo + name row */
.testimonial-author {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info .name {
    font-weight: 700;
    color: var(--primary-color);
}

.author-info .rating {
    color: #ffc107;
    font-size: 1rem;
}

/* \===========================================================
   CTA SECTION — Call-to-action banner
   \===========================================================
   .cta-section: Blue background banner with white text
                 and contrasting button.
   \===========================================================
   */

/* CTA section: blue background, centered */
.cta-section {
    background-color: var(--accent-color);
    padding: 20px 0;
    color: white;
    text-align: center;
}

.cta-section .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.cta-section h2, .cta-section p {
    color: white;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.cta-section p {
    margin-bottom: 2rem;
}

/* CTA button: white background, blue text */
.cta-section .btn {
    background-color: white;
    color: var(--accent-color);
    font-weight: 700;
    display: inline-block;
}

.cta-section .btn:hover {
    background-color: #f0f0f0;
}

/* \===========================================================
   FEATURE SECTION — Two-column layout (image + text)
   \===========================================================
   .feature-section: Flex row (image | text)
   .feature-section.about: Swaps order (text | image)
   \===========================================================
   */

/* Feature section: light background */
.feature-section {
    padding: 20px 0;
}

/* Feature container: flex row, gap */
.feature-section .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* About feature: swap image/text order */
.feature-section.about .image-content {
    order: 2;
}

/* Equal flex for text and image columns */
.feature-section .text-content,
.feature-section .image-content {
    flex: 1;
}

/* Feature images: full width, rounded */
.feature-section .image-content img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* About heading: centered, large */
.about-heading {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-color);
    width: 100%;
}

/* \===========================================================
   CONTACT FORM SECTION — Form styles + animations
   \===========================================================
   .contact: Section wrapper
   #contact-form-container: Form card styling
   .form-control: Input/textarea styles
   .form-group: Field wrapper + label
   Animations: formEntrance (scroll), formPulse (idle)
   \===========================================================
   */

/* Contact section: light background */
.contact {
    padding: 5px 0;
    background-color: var(--surface-color);
}

/* Contact form card: white, rounded, shadow */
#contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

/* Landing page national style (override) */
.page-section.contact {
    background-color: var(--surface-color);
}

.page-section.contact .container {
    max-width: 1100px;
    padding: 0 15px;
}

.page-section.contact .col-lg-8 {
    max-width: 100%;
    padding: 0 15px;
}

.page-section.contact h2.mt-0 {
    text-align: center;
    margin-top: 0;
}

.page-section.contact .divider {
    border: none;
    height: 2px;
    background-color: var(--border-color);
    margin: 1.5rem 0;
}

.page-section.contact .form-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

/* Contact form card (landing page override) */
#contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

/* Form inputs: full width, Outfit font */
.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: "Outfit", system-ui, sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

/* Form focus: blue border + glow */
.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.2);
}

/* Field invite animation keyframes (pulse border) */
/* Used by .form-control--invite class */
@keyframes field-invite {
      0%, 100% {
        border-color: var(--border-color);
        box-shadow: 0 0 0 0 rgba(100, 181, 246, 0);
      }
      50% {
        border-color: #64b5f6;
        box-shadow: 0 0 0 5px rgba(100, 181, 246, 0.35);
      }
}

/* Field invite: applies pulse animation */
/* Removed on focus (user clicked) */
.form-control--invite {
    animation: field-invite 2.2s ease-in-out infinite;
}

.form-control--invite:focus {
    animation: none;
}

@keyframes field-invite {
    0%, 100% { border-color: #dee2e6; box-shadow: 0 0 0 0 rgba(100, 181, 246, 0); }
    50% { border-color: #64b5f6; box-shadow: 0 0 0 5px rgba(100, 181, 246, 0.35); }
}

/* Row/column utilities (Bootstrap-like grid) */

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.row > * {
    padding-left: 15px;
    padding-right: 15px;
    flex: 1 1 100%;
    max-width: 100%;
}

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

.mb-5 {
    margin-bottom: 3rem;
}

/* Contact form responsive fix */
.page-section.contact .row {
    margin-left: 0;
    margin-right: 0;
}

.page-section.contact .row > * {
    padding-left: 0;
    padding-right: 0;
    flex: 1 1 100%;
    max-width: 100%;
}

/* Contact form card (final override) */
#contact-form-container {
    width: 100%;
    max-width: 700px;
    margin-left: auto !important;
    margin-right: auto !important;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Contact form hover: lift + deeper shadow */
#contact-form-container:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.13), 0 4px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* Form entrance animation keyframes (slide up + fade in) */
/* Applied by JS when form scrolls into view */
@keyframes formEntrance {
      0% {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
      }
      100% {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
}

/* Form pulse animation keyframes (infinite glow) */
/* Applied by JS after entrance animation completes */
@keyframes formPulse {
      0%, 100% {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(26, 115, 232, 0);
      }
      50% {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 0 0 20px 3px rgba(26, 115, 232, 0.12);
      }
}

/* Class applied via JS when form enters viewport */
#contact-form-container.form-entrance-active {
    animation: formEntrance 0.7s ease-out forwards;
}

/* Class applied via JS after entrance completes */
#contact-form-container.form-pulse-active {
    animation: formPulse 3s ease-in-out infinite;
}

/* Contact form mobile responsive */
@media (max-width: 768px) {
      .page-section.contact .container {
        padding: 0 10px;
      }
     
      #contact-form-container {
        box-sizing: border-box; /* keep width:100% + padding inside the container so the card can't overflow the viewport */
        padding: 20px 15px;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
}

/* Form group: bottom spacing */
.form-group {
    margin-bottom: 1.5rem;
}

/* Form label: block, bold, primary color */
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
}

/* Form prompt: subheadline style for specific instructions */
.form-prompt {
    font-size: 1rem;
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 12px;
    line-height: 1.4;
}

/* Form inputs/select/textarea: shared styles */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: "Outfit", system-ui, sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Form focus: blue border + glow */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.2);
}

/* Animated highlight for first form field (Full Name) */
/* Pulse border to invite user interaction */
.form-group:first-child input,
.form-group:first-child textarea {
    animation: formFieldHighlight 2s ease-in-out infinite;
    border-color: var(--accent-color) !important;
}

/* First field highlight keyframes */
@keyframes formFieldHighlight {
      0%, 100% {
        box-shadow: 0 0 0 0 rgba(26, 115, 232, 0);
        border-color: var(--border-color);
      }
      50% {
        box-shadow: 0 0 0 6px rgba(26, 115, 232, 0.15);
        border-color: var(--accent-color);
      }
}

/* Form status message: centered below form */
#form-status {
    margin-top: 1rem;
    text-align: center;
}

/* Honeypot field: hidden (for spam detection) */
.honeypot-field {
    display: none !important;
}

/* \===========================================================
   VIDEO WRAPPER — Responsive iframe container
   \===========================================================
   .video-wrapper: 16:9 aspect ratio container for embeds
                   (YouTube, Vimeo, etc.)
   Uses padding-bottom trick for responsive height.
   \===========================================================
   */

/* Video wrapper: 16:9 ratio, rounded, shadow */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Iframe: fill wrapper */
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* \===========================================================
   FORM ENHANCEMENTS — Checkbox positioning
   \===========================================================
   Styles for Squarespace form checkbox fields.
   Positions checkbox below email field with custom label.
   \===========================================================
   */

/* Email field checkbox: relative positioning */
.form-item.field.email {
    position: relative !important;
    padding-bottom: 25px !important;
}

/* Checkbox option: absolute below input */
.form-item.field.email .option {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    margin: 0 0 10px 15px !important;
    display: flex;
    align-items: center;
    width: 100% !important;
}

/* Checkbox input: flex-shrink */
.form-item.field.email .option input[type="checkbox"] {
    margin-right: -10px !important;
    flex-shrink: 0;
}

/* Checkbox label: hide text, replace with ::after */
.form-item.field.email .option label {
    font-size: 0 !important;
    line-height: 0 !important;
}

/* Custom checkbox label text */
.form-item.field.email .option label:after {
    content: "Required: consent to receive download link.";
    color: black !important;
    font-size: 16px;
    line-height: 1.2;
    white-space: normal;
}

/* \===========================================================
   SHIMMER PILL BUTTON — CTA with shine effect
   \===========================================================
   .pill-button: Rounded dark button with animated
                 shimmer overlay (sliding highlight).
   \===========================================================
   */

/* Pill button: dark bg, white border, rounded */
.pill-button {
    position: relative;
    overflow: hidden;
    display: inline-block;
    padding: 18px 40px;
    background-color: rgb(23, 23, 23);
    color: #FFFFFF !important;
    border: 2px solid #FFFFFF;
    border-radius: 50px;
    text-decoration: none !important;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

/* Pill hover: invert colors */
.pill-button:hover {
    background-color: #FFFFFF;
    color: rgb(23, 23, 23) !important;
}

/* Shimmer overlay: sliding highlight */
.pill-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 75%;
    height: 100%;
    background: linear-gradient(
          60deg, 
        transparent, 
        rgba(255, 255, 255, 0.2),
        transparent
      );
    animation: shimmer 4s infinite;
}

/* Shimmer keyframes (slide left to right) */
@keyframes shimmer {
      100% {
        left: 150%;
      }
}

/* \===========================================================
   FOOTER — Shared footer styles
   \===========================================================
   footer: Centered text, bottom padding (clears
           now-playing bar space).
   .footer-tagline: "You are the art." italic
   .footer-copyright: Copyright line, smaller
   \===========================================================
   */

/* Footer: centered, bottom padding for now-playing bar */
footer {
    text-align: center;
    padding: 20px;
    padding-bottom: 80px; /* clear the fixed now-playing bar */
    font-size: 0.9rem;
    color: var(--secondary-color);
}

/* Footer tagline: italic, slightly larger */
footer .footer-tagline {
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--secondary-color);
}

/* Footer copyright: italic, smaller */
footer .footer-copyright {
    font-style: italic;
    font-size: 0.8rem;
    color: var(--secondary-color);
    margin-top: 0;
    margin-bottom: 0;
}

/* reCAPTCHA spacing */
.g-recaptcha {
    margin-bottom: 20px;
}

/* \===========================================================
   SERVICES GRID — Service cards
   \===========================================================
   .services-grid: 3-column grid (responsive → 1 col)
   .service-card: Bordered card with icon, heading, text
   \===========================================================
   */

/* Services grid: 3 columns, centered */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}

/* Service card: matching testimonial card styling */
.service-card {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Service card icon: accent color, centered */
.service-card svg {
    color: var(--accent-color);
    margin: 0 auto .75em;
}

.service-card h3 {
    text-align: center;
    margin-bottom: 0.85rem;
}

.service-card p {
    text-align: center;
    margin-bottom: 0;
}

/* Service card hover: lift + deeper shadow */
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* \===========================================================
   RESPONSIVE BREAKPOINTS
   \===========================================================
   900px: Stack testimonial grid, services grid, feature
          section. Center headings.
   768px: Reduce heading sizes, form padding.
   \===========================================================
   */

/* Responsive: stack grids at 900px */
@media (max-width: 900px) {
        .testimonial-grid {
         grid-template-columns: 1fr;
        }
        .services-grid {
         grid-template-columns: 1fr;
        }
        .feature-section .container {
         flex-direction: column;
        }
        .feature-section.about .image-content {
         order: 1;
        }
        .feature-section .text-content {
         order: 2;
        }
        .feature-section h2 {
         text-align: center;
        }
}

/* Responsive: smaller headings at 768px */
@media (max-width: 768px) {
     h1 { font-size: 2.2rem; }
     h2 { font-size: 1.8rem; }
}

/* \===========================================================
   SCROLL-TRIGGERED ANIMATIONS
   \===========================================================
   .scroll-animate: Base fade-in-up animation
   .scroll-animate-golden: Fade-in-up + golden shadow pulse
   .animate-visible: Applied by JS when element enters viewport
   goldenShadowPulse: Keyframes for golden glow effect
   \===========================================================
   
   HOW IT WORKS:
       1. Elements start with opacity: 0, translateY(30px)
       2. When scrolled into view, JS adds .animate-visible
       3. Element transitions to opacity: 1, translateY(0)
       4. For .scroll-animate-golden: golden shadow pulse triggers
       5. When scrolled out, .animate-visible is removed
       6. When scrolled back in, animation re-triggers
   \===========================================================
   */

/* Base animated state — elements start invisible */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: transform, opacity;
}

/* Visible state — applied by JS on scroll */
.scroll-animate.animate-visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

/* Golden shadow pulse keyframes */
/* Used by .scroll-animate-golden for card glow effect */
@keyframes goldenShadowPulse {
     0% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 0 0 0 rgba(245, 166, 35, 0);
     }
     50% {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1), 0 0 20px 5px rgba(245, 166, 35, 0.2);
     }
     100% {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1), 0 0 10px 2px rgba(245, 166, 35, 0.1);
     }
}

/* Card animated state with golden shadow */
.scroll-animate-golden {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: transform, opacity;
}

/* Golden card visible state — triggers pulse animation */
.scroll-animate-golden.animate-visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
  animation: goldenShadowPulse 1.2s ease-out 0.4s forwards;
}

/* Mobile adjustments: smaller slide distance */
@media (max-width: 768px) {
        .scroll-animate,
        .scroll-animate-golden {
    transform: translateY(20px);
        }
}

/* Class for buttons that fade in with cards */
.scroll-animate-btn-pop {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: transform, opacity;
}

.scroll-animate-btn-pop.animate-visible {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}

/* Hero buttons — always visible */
.scroll-animate-btn-pop-hero {
    opacity: 1;
    transform: none;
}

/* Sending state — disables breathe, cursor shows not-allowed */
.btn--sending {
    animation: none !important;
    cursor: not-allowed;
    opacity: 0.85;
}

/* Hover re-animation for golden shadow cards */
/* Triggers pulse again on hover */
.scroll-animate-golden.animate-visible:hover {
  animation: goldenShadowPulse 1.2s ease-in-out !important;
}

/* Accessibility: respect reduced motion preference */
/* Disables all scroll animations for users who prefer it */
@media (prefers-reduced-motion: reduce) {
     .scroll-animate,
     .scroll-animate-golden {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
     }
     @keyframes goldenShadowPulse {
     0%, 100% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06); }
     }
     .scroll-animate-golden.animate-visible:hover {
    animation: none !important;
     }
     .scroll-animate-btn-pop {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
     }
     .btn-pop-visible .btn {
    animation: none !important;
     }
}
