/* ===========================
   DOOR 417 BRAND VARIABLES
   Based on official brand guidelines
   =========================== */

:root {
    /* Brand Colors */
    --brand-orange: #FF9040;
    --brand-teal: #104141;
    --brand-light-gray: #DCDFDC;
    --brand-taupe: #C7B7B0;
    --brand-gray-green: #676E68;
    --brand-dark-brown: #422F01;
    --brand-sage: #ADCCC6;

    /* Semantic Colors */
    --primary: var(--brand-orange);
    --primary-dark: var(--brand-teal);
    --text-dark: var(--brand-teal);
    --text-body: var(--brand-gray-green);
    --text-light: var(--brand-taupe);
    --bg-light: #FEFEFE;
    --bg-cream: #F9F7F5;

    /* Effects */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(16, 65, 65, 0.08);
    --shadow-md: 0 4px 16px rgba(16, 65, 65, 0.12);
    --shadow-lg: 0 8px 32px rgba(16, 65, 65, 0.16);
}

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

body {
    font-family: 'Outfit', 'ITC Avant Garde Gothic', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 80px 0;
}

/* ===========================
   TYPOGRAPHY
   =========================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Crimson Pro', 'New Spirit', Georgia, serif;
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-dark);
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.section-title.centered {
    text-align: center;
}

.large-text {
    font-size: 1.2rem;
    color: var(--text-body);
    line-height: 1.8;
    font-weight: 400;
}

.large-text.centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* ===========================
   BUTTONS (Brand Style)
   =========================== */

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--brand-orange);
    color: var(--brand-teal);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: #ff7a1f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--brand-teal);
    border-color: var(--brand-teal);
}

.btn-secondary:hover {
    background: var(--brand-teal);
    color: var(--bg-light);
    transform: translateY(-2px);
}

/* ===========================
   HERO SECTION
   =========================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* NFC Badge */
.nfc-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    background: var(--bg-light);
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    margin-bottom: 2.5rem;
    border: 1px solid var(--brand-light-gray);
    animation: fadeInDown 0.8s ease-out;
}

.nfc-icon {
    width: 24px;
    height: 24px;
    color: var(--brand-orange);
}

.nfc-pulse {
    animation: pulse 2s ease-in-out infinite;
    transform-origin: center;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

.nfc-badge span {
    font-weight: 600;
    color: var(--brand-teal);
    font-size: 0.95rem;
}

/* Hero Title */
.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.title-line {
    display: block;
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text-body);
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
}

.title-brand {
    display: block;
    font-weight: 700;
    color: var(--brand-teal);
    position: relative;
    letter-spacing: -1px;
}

.hero-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin: 1rem auto;
    display: block;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-body);
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    font-weight: 400;
}

.highlight {
    color: var(--brand-teal);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--brand-orange);
    opacity: 0.25;
    z-index: -1;
    border-radius: 4px;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Hero Background Elements */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 144, 64, 0.08) 0%, rgba(173, 204, 198, 0.08) 100%);
    animation: float 20s ease-in-out infinite;
}

.circle-1 {
    width: 450px;
    height: 450px;
    top: -120px;
    right: -120px;
    animation-delay: 0s;
}

.circle-2 {
    width: 350px;
    height: 350px;
    bottom: -80px;
    left: -80px;
    animation-delay: 5s;
}

.circle-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ===========================
   INTRO SECTION
   =========================== */

.intro {
    background: var(--bg-light);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.intro-text p {
    margin-bottom: 1.5rem;
    color: var(--text-body);
    font-size: 1.1rem;
    line-height: 1.8;
}

.intro-text strong {
    color: var(--brand-teal);
    font-weight: 700;
}

.intro-stats {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.stat-card {
    background: var(--bg-cream);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateX(10px);
    border-color: var(--brand-orange);
    box-shadow: var(--shadow-md);
    background: var(--bg-light);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--brand-orange);
    margin-bottom: 0.5rem;
    font-family: 'Crimson Pro', serif;
}

.stat-label {
    color: var(--text-body);
    font-size: 1rem;
    font-weight: 500;
}

/* ===========================
   SERVICES SECTION
   =========================== */

.services {
    background: var(--bg-cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--bg-light);
    padding: 2.75rem;
    border-radius: 16px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-orange);
}

.service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.75rem;
    color: var(--brand-teal);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--brand-orange);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--brand-teal);
    font-weight: 700;
}

.service-card p {
    color: var(--text-body);
    line-height: 1.8;
}

/* ===========================
   CLIENT BRANDS TICKER
   =========================== */

.client-brands {
    background: var(--bg-light);
    padding: 60px 0;
    border-top: 2px solid var(--brand-light-gray);
    border-bottom: 2px solid var(--brand-light-gray);
    overflow: hidden;
}

.brands-intro {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-body);
    margin-bottom: 2rem;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
}

.brands-ticker {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.brands-scroll {
    display: flex;
    gap: 3rem;
    animation: scroll 40s linear infinite;
    width: max-content;
}

.brand-logo {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    opacity: 0.7;
    transition: var(--transition);
    filter: grayscale(100%);
}

.brand-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.brands-ticker:hover .brands-scroll {
    animation-play-state: paused;
}

/* ===========================
   WHY US SECTION
   =========================== */

.why-us {
    background: var(--bg-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3.5rem;
    margin-top: 3rem;
}

.why-item {
    position: relative;
    padding-left: 90px;
}

.why-number {
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    font-weight: 700;
    color: var(--brand-light-gray);
    line-height: 1;
    font-family: 'Crimson Pro', serif;
}

.why-item h3 {
    font-size: 1.65rem;
    margin-bottom: 0.75rem;
    color: var(--brand-teal);
    font-weight: 700;
}

.why-item p {
    color: var(--text-body);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ===========================
   BOOKING / CALENDLY SECTION
   =========================== */

.booking {
    background: var(--bg-cream);
    padding: 100px 0;
}

.booking-header {
    margin-bottom: 3.5rem;
}

.calendly-inline-widget {
    max-width: 1000px;
    margin: 0 auto;
}

/* ===========================
   FOOTER
   =========================== */

.footer {
    background: var(--brand-teal);
    color: var(--bg-light);
    padding: 3.5rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-brand h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--brand-orange);
    font-weight: 700;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 1rem;
    display: block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--brand-orange);
    transform: translateX(5px);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* New footer grid styles */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-brand {
    padding-right: 2rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-location {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-top: 0.75rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section h4 {
    color: var(--brand-orange);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

.footer-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    display: inline-block;
}

.footer-link:hover {
    color: var(--brand-orange);
    transform: translateX(3px);
}

.footer-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

/* ===========================
   REFERENCES NOTE
   =========================== */

.references-note {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--brand-light-gray);
    color: var(--text-light);
    font-size: 0.95rem;
    font-style: italic;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 968px) {
    .section-title {
        font-size: 2.25rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .intro-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 3rem;
    }

    .title-line {
        font-size: 1.35rem;
    }

    .hero-logo {
        max-width: 300px;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta a {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .why-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .circle-1 {
        width: 300px;
        height: 300px;
    }

    .circle-2 {
        width: 220px;
        height: 220px;
    }

    .circle-3 {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-logo {
        max-width: 240px;
    }

    .section-title {
        font-size: 2rem;
    }

    .large-text {
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .why-item {
        padding-left: 70px;
    }

    .why-number {
        font-size: 3rem;
    }
}

/* ===========================
   COFFEE ACKNOWLEDGMENT SECTION
   =========================== */

.coffee-thanks {
    background: var(--bg-light);
    padding: 60px 0;
    border-bottom: 2px solid var(--brand-light-gray);
}

.coffee-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.coffee-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--brand-teal);
}

.coffee-content p {
    font-size: 1.15rem;
    color: var(--text-body);
    line-height: 1.8;
}

/* ===========================
   TWO PATHS SECTION
   =========================== */

.two-paths {
    background: var(--bg-cream);
    padding: 80px 0;
}

.paths-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.path-card {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 20px;
    border: 3px solid var(--brand-light-gray);
    transition: var(--transition);
    position: relative;
}

.path-card:hover {
    border-color: var(--brand-orange);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.path-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.path-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--brand-teal);
}

.path-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-orange);
    margin-bottom: 1.5rem;
    font-family: 'Crimson Pro', serif;
}

.path-description {
    font-size: 1.1rem;
    color: var(--text-body);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.path-includes {
    background: var(--bg-cream);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.path-includes p {
    font-weight: 600;
    color: var(--brand-teal);
    margin-bottom: 0.75rem;
}

.path-includes ul {
    list-style: none;
    padding: 0;
}

.path-includes li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--text-body);
}

.path-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-orange);
    font-weight: bold;
}

.path-bonus {
    background: rgba(255, 144, 64, 0.1);
    padding: 1.25rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: var(--brand-teal);
}

.path-card .btn-primary {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.path-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 8rem;
}

.path-divider span {
    background: var(--brand-teal);
    color: var(--bg-light);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
}

/* ===========================
   WHO WE WORK WITH SECTION
   =========================== */

.who-we-work-with {
    background: var(--bg-cream);
    padding: 80px 0;
}

.who-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.who-content .large-text {
    margin-bottom: 3rem;
}

.client-types {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.client-type {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--brand-light-gray);
    transition: var(--transition);
}

.client-type:hover {
    border-color: var(--brand-orange);
    transform: translateY(-3px);
}

.client-type h4 {
    font-size: 1.25rem;
    color: var(--brand-teal);
    margin-bottom: 0.75rem;
}

.client-type p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===========================
   WHAT HAPPENS NEXT SECTION
   =========================== */

.what-happens-next {
    background: var(--bg-light);
    padding: 80px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.process-track h3 {
    font-size: 1.5rem;
    color: var(--brand-teal);
    margin-bottom: 2rem;
}

.process-steps {
    list-style: none;
    counter-reset: steps;
    padding: 0;
}

.process-steps li {
    counter-increment: steps;
    margin-bottom: 1.75rem;
    padding-left: 0;
    color: var(--text-body);
    line-height: 1.7;
}

.process-steps li strong {
    color: var(--brand-orange);
    font-weight: 600;
}

.no-pressure {
    text-align: center;
    font-size: 1.25rem;
    color: var(--brand-teal);
    margin-top: 3rem;
    font-weight: 600;
}

/* ===========================
   FAQ SECTION
   =========================== */

.faq {
    background: var(--bg-cream);
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--bg-light);
    padding: 2.25rem;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--brand-orange);
    box-shadow: var(--shadow-md);
}

.faq-item h4 {
    font-size: 1.2rem;
    color: var(--brand-teal);
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-body);
    line-height: 1.7;
}

/* ===========================
   CONTACT PREFERENCE SECTION
   =========================== */

.contact-preference {
    background: var(--bg-light);
    padding: 80px 0;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2.5rem 3rem;
    background: var(--bg-cream);
    border-radius: 16px;
    border: 2px solid var(--brand-light-gray);
    text-decoration: none;
    transition: var(--transition);
    min-width: 250px;
}

.contact-method:hover {
    border-color: var(--brand-orange);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    font-size: 3rem;
}

.contact-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.contact-value {
    font-size: 1.5rem;
    color: var(--brand-teal);
    font-weight: 600;
}

.response-time {
    text-align: center;
    color: var(--text-body);
    font-size: 1rem;
    margin-top: 2rem;
}

/* ===========================
   FOOTER UPDATES
   =========================== */

.footer-location {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===========================
   RESPONSIVE - NEW SECTIONS
   =========================== */

@media (max-width: 968px) {
    .paths-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .path-divider {
        padding: 0;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-methods {
        flex-direction: column;
        gap: 1.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .client-types {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .client-types {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   SMOOTH SCROLLING
   =========================== */

html {
    scroll-behavior: smooth;
}

/* ===========================
   ACCESSIBILITY
   =========================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--brand-orange);
    outline-offset: 4px;
}
