:root {
    /* Vibrant Palette */
    --vibrant-orange: #FF5722;
    --vibrant-purple: #673AB7;
    --deep-charcoal: #1A1A1A;
    --light-ash: #F5F5F5;
    --pure-white: #FFFFFF;
    --soft-border: #E0E0E0;
    
    /* Typography */
    --font-elegant: 'Cormorant Garamond', serif;
    --font-reading: 'Lora', serif;
    
    /* Rhythm */
    --space-sm: 1.2rem;
    --space-md: 2.5rem;
    --space-lg: 5rem;
    --space-xl: 8rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-reading);
    color: var(--deep-charcoal);
    background-color: var(--pure-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Global Image Rule */
img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Typographic Scales */
.elegant-display {
    font-family: var(--font-elegant);
    font-weight: 600;
    line-height: 1.1;
}

.section-title {
    font-family: var(--font-elegant);
    font-size: 2.8rem;
    margin-bottom: var(--space-md);
    color: var(--vibrant-purple);
}

.section-title.light-text {
    color: var(--pure-white);
}

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

/* Layout Utilities */
.studio-bounds {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Nav */
.kinetix-topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid var(--soft-border);
    padding: 1rem 0;
}

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

.brand-mark a {
    font-family: var(--font-elegant);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--deep-charcoal);
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-cluster {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-cluster a {
    text-decoration: none;
    color: var(--deep-charcoal);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-cluster a:hover {
    color: var(--vibrant-orange);
}

/* Hero Section */
.hero-expanse {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-backdrop-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: brightness(0.6);
}

.hero-content-layer {
    position: relative;
    z-index: 1;
    color: var(--pure-white);
    max-width: 800px;
}

.hero-content-layer h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    margin-bottom: 1rem;
}

.hero-subtext {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    font-family: var(--font-elegant);
    font-style: italic;
}

/* Buttons / CTAs */
.engage-trigger {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-family: var(--font-elegant);
    font-weight: 600;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.3s ease;
    text-align: center;
}

.engage-trigger.primary-vibe {
    background-color: var(--vibrant-orange);
    color: var(--pure-white);
}

.engage-trigger.primary-vibe:hover {
    background-color: #E64A19;
    transform: translateY(-2px);
}

.engage-trigger.full-width {
    width: 100%;
}

/* About Section */
.studio-story-block {
    padding: var(--space-xl) 2rem;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text-zone p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.inline-text-link {
    color: var(--vibrant-orange);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.story-image-plate {
    border-radius: 4px;
    box-shadow: 20px 20px 0px var(--light-ash);
}

/* Interactive Counters */
.data-metrics-row {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--soft-border);
}

.metric-node {
    display: flex;
    flex-direction: column;
}

.metric-number, .metric-plus {
    font-family: var(--font-elegant);
    font-size: 3rem;
    font-weight: 600;
    color: var(--vibrant-purple);
    line-height: 1;
}

.metric-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    color: #666;
}

/* Services Section */
.disciplines-arena {
    background-color: var(--deep-charcoal);
    padding: var(--space-lg) 0 var(--space-xl) 0;
    color: var(--pure-white);
}

.arena-header {
    margin-bottom: var(--space-lg);
    max-width: 600px;
}

.arena-intro {
    font-size: 1.2rem;
    opacity: 0.9;
}

.discipline-asymmetry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.discipline-card {
    background-color: var(--pure-white);
    color: var(--deep-charcoal);
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.span-two-cols {
    grid-column: span 2;
}

.card-img-top {
    height: 300px;
}

.card-inner-pad {
    padding: 2rem;
    flex-grow: 1;
}

.card-heading {
    font-family: var(--font-elegant);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--vibrant-purple);
}

.benefit-highlight {
    display: block;
    margin-top: 1rem;
    font-weight: 500;
    color: var(--vibrant-orange);
    font-style: italic;
}

/* Testimonials */
.feedback-corridor {
    padding: var(--space-xl) 2rem;
}

.feedback-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.voice-card {
    background-color: var(--light-ash);
    padding: 2.5rem 2rem;
    border-radius: 4px;
    position: relative;
    margin-top: 2rem; /* space for avatar */
}

.voice-avatar-wrap {
    position: absolute;
    top: -2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--pure-white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.voice-quote {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.voice-name {
    font-family: var(--font-elegant);
    font-weight: 600;
    color: var(--vibrant-purple);
}

/* Contact Section */
.inquiry-nexus {
    background-color: var(--light-ash);
    padding: var(--space-xl) 0;
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-preamble {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.micro-details-box {
    background-color: var(--pure-white);
    padding: 2rem;
    border-left: 4px solid var(--vibrant-purple);
    margin-bottom: 1.5rem;
}

.micro-heading {
    font-family: var(--font-elegant);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.tiny-disclaimer {
    font-size: 0.8rem;
    color: #888;
}

.sleek-form {
    background-color: var(--pure-white);
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--soft-border);
    font-family: var(--font-reading);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--vibrant-purple);
}

/* Footer */
.studio-footer {
    background-color: var(--deep-charcoal);
    color: var(--pure-white);
    padding: var(--space-lg) 0 2rem 0;
}

.footer-layout {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-logo {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: #AAA;
    font-style: italic;
}

.footer-contact-col p {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #CCC;
}

.footer-contact-col a,
.footer-links-col a {
    color: var(--vibrant-orange);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-contact-col a:hover,
.footer-links-col a:hover {
    opacity: 0.8;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.copyright-text {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #777;
}

/* Simple Page Styles (Privacy/Terms) */
.simple-page-wrap {
    padding: var(--space-xl) 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.simple-page-wrap h1 {
    margin-bottom: 2rem;
    color: var(--vibrant-purple);
}

.simple-page-wrap h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: var(--font-elegant);
}

.simple-page-wrap p {
    margin-bottom: 1rem;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .story-grid,
    .contact-split {
        grid-template-columns: 1fr;
    }
    
    .discipline-asymmetry-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .span-two-cols {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .header-flex {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-cluster {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-content-layer h1 {
        font-size: 2.5rem;
    }
    
    .discipline-asymmetry-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-layout {
        grid-template-columns: 1fr;
    }
    
    .data-metrics-row {
        flex-direction: column;
        gap: 1.5rem;
    }
}
