:root {
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-xxl: 64px;
    
    --container-width-text: 700px;
    --container-width-lg: 1280px;

    --color-bg-light: #ffffff;
    --color-bg-grey: #F5F5F7;
    --color-bg-dark: #1C1C1E;
    
    --color-text-dark: #1D1D1F;
    --color-text-light: #F2F2F7;
    --color-text-subtle: #8E8E93;

    --radius-md: 18px;
    --radius-pill: 999px;
    
    --accent-primary: #007AFF;
    --accent-secondry: #E60039;


    --font-size-base: 1rem;
    --font-size-mid: 1.125rem;
}

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

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased; 
    -moz-osx-font-smoothing: grayscale; 
    background-color: var(--color-bg-light);      
    color: var(--color-text-dark);          
}

h1, h2, h3 {
    margin: 0;
    font-weight: 600; 
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem; 
    font-weight: 700; 
    letter-spacing: -1px;
}

h2 {
    font-size: 2.5rem; 
}

h3 {
    font-size: 1.25rem; 
    margin-bottom: 0.25rem;
}

p {
    margin: 0;
    font-size: 1.125rem; 
    line-height: 1.5;
    font-weight: 400; 
}

a {
    color: var(--accent-primary); 
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.7;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width-lg);
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--space-md);
}

.container--text {
    max-width: var(--container-width-text);
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--space-md);
}

.logo {
    max-width: 260px; 
    height: auto;
    margin: 0 auto;
}

.hero {
    text-align: center;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 740px;
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    position: relative;
}

.hero h1,
.hero h2 {
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.hero h2 {
    font-size: 2rem;
    font-weight: 600;
}

.hero .sub-headline {
    font-size: 1.25rem; 
    color: #8E8E93;   
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.scroll-prompt {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-prompt svg {
    stroke: var(--color-text-subtle);
    width: 24px;
    height: 24px;
    animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

.bridge-section {
    padding: var(--space-xl) var(--space-md);
    background-color: var(--color-bg-light);
    text-align: center;
}

.bridge-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin: 0;
}

.bridge-headline {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-top: 0.5rem;
    color: var(--color-text-dark);
}

.bridge-section .bridge-headline {
    background-image: linear-gradient(135deg, #00F5A0, #007AFF, #A855F7);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.intro-paragraph {
    padding: 1rem var(--space-md);
    background-color: var(--color-bg-light);
}



.intro-paragraph p {
    font-size: 1.5rem;
    font-weight: 400;
    color: #555555;
    line-height: 1.5;
    text-align: left;
    letter-spacing: -0.5px;
    max-width: 720px;
    margin: 0 auto;
}

.intro-paragraph--dark {
    background-color: var(--color-bg-dark);
}

.intro-paragraph--dark p {
    color: var(--color-text-light);
}

.project-gallery {
    padding: var(--space-lg) 0;
    color: var(--color-text-light);
}

#vr-gallery {
    background-color: var(--color-bg-light);
}

#normal-gallery {
    background-color: var(--color-bg-dark);
}
#normal-gallery .dot::after {
    background-color: var(--accent-secondry);
}
.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    text-align: left;
}

.gallery-header h2 {
    flex-shrink: 0;
    margin-right: var(--space-lg);
}

#vr-gallery .gallery-header h2 {
    color: var(--color-text-dark);
}

#normal-gallery .gallery-header h2 {
    color: var(--color-text-light);
}

.gallery-subheader {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-text-subtle);
    margin: 0;
    max-width: 40%;
    text-align: left;
}

.gallery-header-content {
    flex-grow: 1;
}

.gallery-reel-link {
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    flex-shrink: 0;
    margin-left: var(--space-lg);
    transition: opacity 0.3s ease;
}

.gallery-reel-link:hover {
    opacity: 0.7;
}

.gallery-reel-link span {
    line-height: 1;
}

.gallery-reel-link svg {
    width: 16px;
    height: 16px;
    margin-left: var(--space-sm);
}

/* --- Context-Aware Styles --- */

/* Light section (VR) */
#vr-gallery .gallery-reel-link {
    color: var(--accent-primary);
}
#vr-gallery .gallery-reel-link svg {
    stroke: var(--accent-primary);
    fill: var(--accent-primary);
}

/* Dark section (Commercial) */
#normal-gallery .gallery-reel-link {
    color: var(--color-text-light);
}
#normal-gallery .gallery-reel-link svg {
    stroke: var(--color-text-light);
    fill: var(--color-text-light);
}

.gallery-carousel-wrapper {
    overflow: hidden;
    margin-top: var(--space-lg);
}

.gallery-image-slider {
    display: flex;
    overflow-x: auto;
    gap: var(--space-lg);
    padding-bottom: var(--space-md);
    justify-content: flex-start;
    scrollbar-width: none;
    -ms-overflow-style: none;
    
    padding-left: calc(((100vw - var(--container-width-lg)) / 2));
    padding-right: calc(((100vw - var(--container-width-lg)) / 2));

    scroll-behavior: smooth;
}

.gallery-image-slider::-webkit-scrollbar {
    display: none;
}

.gallery-slide {
    flex-basis: 600px;
    flex-shrink: 0;
    position: relative;
}

.gallery-slide-image {
    line-height: 0;
    margin: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: #2c2c2e;
}

.gallery-slide-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.gallery-slide-content {
    padding-left: 1rem;
    text-align: left;
    margin-top: var(--space-lg);
}

#vr-gallery .gallery-slide-content h3 {
    color: var(--color-text-dark);
}

#normal-gallery .gallery-slide-content h3 {
    color: var(--color-text-light);
}

#vr-gallery .gallery-slide-content p {
    color: var(--color-text-subtle);
}

#normal-gallery .gallery-slide-content p {
    color: var(--color-text-subtle);
}

.gallery-nav {
    display: flex;
    justify-content: flex-end; 
    align-items: center;
    position: relative;
    margin-top: var(--space-lg);
    padding-top: 0;
}
.nav-center-controls {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-arrow-controls {
    display: flex;
    gap: var(--space-sm);
}

.nav-arrow-controls button {
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background-color 0.3s ease;
}

.pause-control {
    border: none;
    border-radius: 50%;
    cursor: pointer;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    transition: background-image 0.2s ease, background-color 0.3s ease;
}

#vr-gallery .nav-arrow-controls button,
#vr-gallery .pause-control {
    background-color: rgba(0, 0, 0, 0.05);
}

#normal-gallery .nav-arrow-controls button,
#normal-gallery .pause-control {
    background-color: rgba(245, 245, 247, 0.1);
}

#vr-gallery .nav-arrow-controls button:hover,
#vr-gallery .pause-control:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

#normal-gallery .nav-arrow-controls button:hover,
#normal-gallery .pause-control:hover {
    background-color: rgba(245, 245, 247, 0.2);
}

#vr-gallery .gallery-nav button svg {
    stroke: var(--color-text-dark);
}

#normal-gallery .gallery-nav button svg {
    stroke: white;
}

#vr-gallery .gallery-nav button svg.lucide-pause,
#vr-gallery .gallery-nav button svg.lucide-play {
    fill: var(--color-text-dark);
}

#normal-gallery .gallery-nav button svg.lucide-pause,
#normal-gallery .gallery-nav button svg.lucide-play {
    fill: white;
}

.dot-nav {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    border-radius: var(--radius-pill);
    padding: var(--space-md);
}

#vr-gallery .dot-nav {
    background-color: var(--color-bg-grey);
}

#normal-gallery .dot-nav {
    background-color: rgb(42, 42, 45);
}

.dot {
    opacity: 0.3;
    border: none;
    height: 8px;
    width: 8px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    padding: 0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

#vr-gallery .dot {
    background-color: #D1D1D1;
}

#normal-gallery .dot {
    background-color: var(--color-text-subtle);
}

.dot.active {
    width: 40px;
    opacity: 1;
}

#vr-gallery .dot.active {
    background-color: var(--color-text-subtle);
}

#normal-gallery .dot.active {
    background-color: var(--color-text-light);
}

.dot::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: var(--color-text-dark);
}

.dot.active.filling::after {
    width: 100%;
    transition: width 5s linear;
}

.palate-cleanser {
    padding: var(--space-xxl) var(--space-md);
    background-color: var(--color-bg-dark);
    text-align: center;
}
.palate-cleanser .bridge-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-text-light);
    margin: 0;
}

.palate-cleanser .bridge-headline {
    background-image: linear-gradient(135deg, #FF5E3A, #E60039);
    
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}


/* ======================================= */
/* GUIDE / FEATURE SECTION (UNIFIED)       */
/* ======================================= */

.guide-banner {
    padding: 8rem var(--space-md);
    /* The Continuous Purple Gradient */
    background-image: linear-gradient(135deg, #5B21B6, #7C3AED); 
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.guide-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.guide-label {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.guide-headline {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    color: white;
}

.guide-subhead {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 3rem;
    color: white;
}

/* --- INTERACTION (BUTTON & FORM) --- */
.guide-interaction-wrapper {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* State 1: The Button */
.guide-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: white;
    color: #5B21B6;
    padding: 1rem 2rem;
    border-radius: 999px;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.3s ease;
}

.guide-btn:hover {
    transform: scale(1.02);
}

.guide-btn svg {
    width: 20px;
    height: 20px;
}

/* State 2: The Form (Input) */
.guide-form {
    display: flex;
    width: 100%;
    max-width: 400px;
    position: relative;
    animation: fadeIn 0.4s ease forwards;
}

.guide-form.hidden {
    display: none;
}

.guide-form input {
    width: 100%;
    padding: 1rem 3.5rem 1rem 1.5rem;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    outline: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.guide-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.guide-form input:focus {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: white;
}

.guide-submit-btn {
    position: absolute;
    right: 6px;
    top: 6px;
    bottom: 6px;
    width: 48px;
    border-radius: 50%;
    background-color: white;
    border: none;
    color: #5B21B6;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.guide-submit-btn:hover {
    transform: translateX(2px);
}

/* State 3: Success Message */
.guide-success {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    animation: fadeIn 0.4s ease forwards;
}

.guide-success.hidden {
    display: none;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- SUMMARY CARDS (EVIDENCE) --- */

/* 1. Container Layout */
.pathway-cards-container { /* Renamed from .summary-grid to match HTML */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 1100px; 
    margin: 5rem auto 0 auto;
    padding: 0 var(--space-lg);
}

/* 2. Card Styling */
.pathway-card { /* Renamed from .summary-card */
    background: rgba(255, 255, 255, 0.1); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    
    padding: var(--space-xl) var(--space-lg);
    border-radius: var(--radius-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    color: white;
}

.pathway-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

/* Inner Glow */
.pathway-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    z-index: -1;
    background: radial-gradient(
        circle at 50% 0%,
        rgba(255, 255, 255, 0.2),
        transparent 70%
    );
    opacity: 0.5;
    mix-blend-mode: overlay;
}

/* Sheen Animation */
.pathway-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        110deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 80%,
        transparent 70%
    );
    animation: sheen-animation 6s ease-in-out infinite;
    transform: translateX(-100%);
}

.pathway-card:nth-child(1)::before { animation-delay: 0s; }
.pathway-card:nth-child(2)::before { animation-delay: 2s; }
.pathway-card:nth-child(3)::before { animation-delay: 4s; }

@keyframes sheen-animation {
    0% { transform: translateX(-100%) skewX(-25deg); }
    20% { transform: translateX(100%) skewX(-25deg); }
    100% { transform: translateX(100%) skewX(-25deg); }
}

/* 3. Icon Styling */
.pathway-icon { 
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-md);
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.25); 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.pathway-icon svg {
    stroke: white;
    width: 28px;
    height: 28px;
}

/* 4. Text Styling */
.pathway-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.pathway-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

/* --- RESPONSIVE CAROUSEL LOGIC --- */
.mobile-only {
    display: none;
}



.contact {
    background-color: var(--color-bg-grey);
    text-align: center;
    padding: 10rem var(--space-md);
    overflow: hidden;
}

.contact .container {
    max-width: 800px;
}

.contact-header {
    margin-bottom: 2rem;
}

.contact-header .bridge-title {
    color: var(--color-text-subtle);
}

.contact-header .bridge-headline {
    font-size: 3.5rem;
    color: var(--color-text-dark);
}

.contact-pitch {
    font-size: 1.25rem;
    color: var(--color-text-subtle);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    position: relative; 
    overflow: hidden;
    background-color: var(--accent-primary);
    color: var(--color-bg-light) !important;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-pill);
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: var(--space-sm); 
}

.contact-email:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}

.copy-text,
.contact-email i {
    transition: transform 0.4s ease, opacity 0.4s ease;
    line-height: 1;
}

.contact-email svg {
    stroke: var(--color-bg-light);
    width: 24px;
    height: 24px;
    margin-left: var(--space-sm);
}

.copy-feedback {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(50%, -50%); 
    opacity: 0;
    font-size: 1.25rem; 
    font-weight: 600; 
    color: var(--color-bg-light);
    transition: all 0.4s ease;
}

.contact-email.copied .copy-text,
.contact-email.copied i {
    opacity: 0;
    transform: translateX(-150%);
}

.contact-email.copied .copy-feedback {
    opacity: 1;
    transform: translate(-50%, -50%);
}


/* --- Legal Disclaimer --- */

.legal-disclaimer {
    background-color: var(--color-bg-grey);
    padding: var(--space-xl) var(--space-md);
    text-align: left;
    border-top:1px solid rgba(0, 0, 0, 0.1) ;
}

.legal-disclaimer .container {
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: var(--space-lg);
}

.disclaimer-body {
    font-size: 0.875rem;
    color: var(--color-text-subtle);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.disclaimer-footer {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-subtle);
    margin-top: var(--space-xl);
}

footer {
    background-color: var(--color-bg-light);
    padding: var(--space-xxl) var(--space-md) var(--space-lg) var(--space-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    max-width: 800px;
    padding-bottom: var(--space-xxl);
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-dark);
    margin: 0 0 var(--space-sm) 0;
}

.footer-column p {
    font-size: 0.875rem;
    color: var(--color-text-subtle);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.footer-column p strong {
    font-weight: 600;
    color: var(--color-text-dark);
}

.footer-column a {
    display: block;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-text-subtle);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.6;
}

.footer-column a:hover {
    color: var(--accent-primary);
    opacity: 1;
}

.footer-main-email {
    font-weight: 600;
    color: var(--color-text-dark) !important;
}

.footer-copyright {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid #E5E5E5; 
}

.footer-copyright p {
    font-size: 0.875rem; 
    color: var(--color-text-subtle);
}

/* --- main media query --- */
@media (max-width: 1280px) {
    .hero {
    height: 600px;
    }
    .container {
        max-width: 920px;
    }
    .gallery-slide{
        flex-basis: 460px;
    }
    .intro-paragraph p{
        font-size: 1.2rem;
        max-width: 650px;
    }
    h2 {
        font-size: 2rem;
    }
    .gallery-subheader{
        font-size: 1.15rem;
        max-width: 60%;
    }
    .gallery-image-slider{
        padding-left:calc(((100vw - 920px) / 2));
        padding-right:calc(((100vw - 920px) / 2));
    }
    .palate-cleanser{
        padding: 2rem 1rem
    }
    .contact{
        padding: 5rem 1rem;
    }
}


@media (max-width: 1070px) {
    .hero {
    height: 520px;
    }
    .container {
        max-width: 680px;
    }
    .logo{
        max-width: 200px;
    }
    .hero h1, .hero h2{
        font-size: 3rem;
    }
    .scroll-prompt{
        bottom: 0.7rem;
    }
    .bridge-headline{
        font-size: 3rem;
    }
    .gallery-slide{
        flex-basis: 600px;
    }
    .intro-paragraph p{
        font-size: 1.2rem;
        max-width: 650px;
    }
    h2 {
        font-size: 2rem;
    }
    .gallery-subheader{
        font-size: 1.15rem;
        max-width: 65%;
    }
    .gallery-image-slider{
        padding-left:calc(((100vw - 680px) / 2));
        padding-right:calc(((100vw - 680px) / 2));
    }
    .palate-cleanser{
        padding: 2rem 1rem
    }

    .mobile-only {
            display: flex;
        }

    .pathway-cards-container {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        padding-left: 2rem;
        padding-right: 2rem;
        display: flex;
        grid-template-columns: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: var(--space-lg);
        padding-bottom: var(--space-lg);
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .pathway-cards-container::-webkit-scrollbar {
        display: none;
    }

    .pathway-card {
        min-width: 400px;
        scroll-snap-align: center;
    }

    .pagination-bar.mobile-only {
        justify-content: center;
        gap: 8px;
        margin-top: 1rem;
    }

    .guide-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
    }

    .guide-dot.active {
        background-color: white;
        width: 24px;
        border-radius: 10px;
    }

    .contact .container{
        width: 680px;
    }
    .contact-header .bridge-headline{
        font-size: 3rem;
    }
    .contact{
        padding: 5rem 1rem;
    }
    .contact-email{
        font-size: 0.9rem;
    }
    .legal-disclaimer .container{
        width: 730px;
    }
    .footer-content{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 734px) {
    .logo{
        max-width: 160px;
    }
    .hero h1, .hero h2{
        font-size: 2rem;
    }
    .hero .sub-headline{
        font-size: 1.2rem;
        max-width: 240px;
    }
    .container {
        max-width: 350px;
    }
    .project-gallery{
        padding-top: 3rem;
    }
    .gallery-header{
        display: flex;
        flex-direction: column;
        align-items: start;
    }
    .gallery-reel-link{
        margin: 1rem 0;
    }
    .gallery-slide{
        flex-basis: 320px;
    }
    .gallery-slide-image img{
        aspect-ratio: 3 / 4;
    }
    .gallery-image-slider{
        padding-left:calc(((100vw - 350px) / 2));
        padding-right:calc(((100vw - 350px) / 2));
    }
    h3{
        font-size: 1rem;
    }
    .gallery-slide-content p {
        font-size: 1rem;
    }
    .bridge-section{
        padding: 2rem 1rem;
    }
    .bridge-title{
        font-size: 1.5rem;
    }
    .bridge-headline{
        font-size: 2.2rem;
    }

.nav-center-controls {
        display: none;
    }

    .gallery-nav {
        justify-content: flex-end; 
        margin-top: 0;
        padding: 0 2rem;
    }

    .nav-arrow-controls button,
    .pause-control {
        width: 42px;
        height: 42px;
    }

    .gallery-nav button svg {
        width: 22px;
        height: 22px;
    }
    
    .nav-arrow-controls {
        gap: var(--space-xs, 4px);
    }
    
    .dot-nav {
        padding: 1rem;
    }

    .dot.active {
        width: 30px;
    }

    .intro-paragraph{
    padding: 1rem;
    }
    .intro-paragraph p{
        font-size: 1.2rem;
        max-width: 400px;
    }
    h2 {
        font-size: 1.75rem;
    }
    .gallery-subheader{
        font-size: 1.2rem;
        max-width: 100%;
    }
    .palate-cleanser{
        padding: 3rem 1rem 1rem 1rem;
    }

    .guide-headline {
        font-size: 2.5rem;
    }
    
    .pathway-cards-container {
        gap: var(--space-md);
        padding: 0 calc((100vw - 300px) / 2); 
        padding-bottom: 2rem;
    }
    
    .pathway-card {
        min-width: 300px; 
        width: 300px;
        padding: var(--space-lg);
    }

    .contact .container{
        width: 350px;
    }
    .contact-header .bridge-headline{
        font-size: 2rem;
    }
    .contact-pitch{
        font-size: 1.2rem;
        max-width: 275px;
    }


    .legal-disclaimer .container{
        max-width: 400px;
        width: 100%;
    }
    .footer-content {
            display: grid;
            grid-template-columns: 1fr;     
            gap: 10px;
            padding-bottom: 1rem;

        }
        .footer-column{
            margin-bottom: 1rem;
        }
        .footer-column h4 {
            font-size: 1rem;
        }
        .footer-column p,
        .footer-column a {
            font-size: 1rem;
            font-weight: 400;
            line-height: 1.3;
            margin-bottom: 0.75rem;
        }

}
