/* =========================================================
   CSS Reset and Base Styles
   ========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #f8f9fa;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a2b4a;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: #c9a84c;
    transition: color 0.3s ease;
}

a:hover {
    color: #a8893c;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 4px;
    text-transform: uppercase;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: #c9a84c;
    color: #1a2b4a;
    border-color: #c9a84c;
}

.btn-primary:hover {
    background-color: #b89640;
    border-color: #b89640;
    color: #1a2b4a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(201, 168, 76, 0.35);
}

.btn-outline {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-outline:hover {
    background-color: #ffffff;
    color: #1a2b4a;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* =========================================================
   Section Labels and Subtitles
   ========================================================= */
.section-label {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c9a84c;
    margin-bottom: 0.75rem;
}

.section-label-light {
    color: #c9a84c;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 650px;
    margin: 0 auto 3rem;
    text-align: center;
    line-height: 1.8;
}

/* =========================================================
   Header / Navigation
   ========================================================= */
header {
    background-color: #1a2b4a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 15px;
}

.logo .logo-wordmark {
    color: #ffffff;
    font-size: 1.4rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo .logo-wordmark .logo-icon {
    color: #c9a84c;
    font-size: 1.3rem;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 8px;
}

nav ul li a {
    color: rgba(255, 255, 255, 0.85);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: 3px;
    transition: color 0.3s ease, background 0.3s ease;
}

nav ul li a:hover {
    color: #c9a84c;
    background-color: rgba(201, 168, 76, 0.1);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.4rem;
    color: #ffffff;
    padding: 8px;
    background: none;
    border: none;
    line-height: 1;
}

/* =========================================================
   Hero Section
   ========================================================= */
.hero {
    min-height: 100vh;
    background: linear-gradient(
        135deg,
        rgba(26, 43, 74, 0.88) 0%,
        rgba(45, 74, 122, 0.75) 100%
    ),
    url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&h=1080&q=80');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 70px;
    padding: 80px 20px;
}

.hero-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #c9a84c;
    margin-bottom: 1.2rem;
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =========================================================
   About Section
   ========================================================= */
.about {
    padding: 100px 0 60px;
    background-color: #ffffff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.4rem;
    color: #1a2b4a;
    margin-bottom: 1.2rem;
}

.about-text p {
    color: #444;
    margin-bottom: 1rem;
    font-size: 1.02rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(26, 43, 74, 0.18);
    width: 100%;
    object-fit: cover;
    height: 420px;
}

/* Stats */
.about-stats {
    display: flex;
    gap: 20px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    background-color: #f8f9fa;
    padding: 24px 20px;
    border-radius: 8px;
    border: 1px solid #e8edf3;
    flex: 1;
    min-width: 120px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(26, 43, 74, 0.12);
}

.stat h3 {
    font-size: 2.2rem;
    color: #c9a84c;
    margin-bottom: 6px;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.stat p {
    color: #555;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0;
}

/* Differentiators */
.differentiators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-top: 20px;
}

.diff-card {
    background-color: #f8f9fa;
    border: 1px solid #e8edf3;
    border-top: 4px solid #c9a84c;
    padding: 32px 28px;
    border-radius: 0 0 8px 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diff-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(26, 43, 74, 0.12);
}

.diff-card i {
    font-size: 2rem;
    color: #c9a84c;
    margin-bottom: 16px;
    display: block;
}

.diff-card h3 {
    font-size: 1.1rem;
    color: #1a2b4a;
    margin-bottom: 10px;
}

.diff-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* =========================================================
   Services Section
   ========================================================= */
.services {
    padding: 100px 0;
    background-color: #1a2b4a;
}

.services .section-label {
    display: block;
    text-align: center;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.services .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.25);
    padding: 36px 28px;
    border-radius: 8px;
    text-align: left;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    border-color: #c9a84c;
}

.service-card i {
    font-size: 2.4rem;
    color: #c9a84c;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* =========================================================
   Testimonials Section
   ========================================================= */
.testimonials {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.testimonials .section-label {
    display: block;
    text-align: center;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a2b4a;
    margin-bottom: 1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 36px 32px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(26, 43, 74, 0.08);
    border-bottom: 4px solid #c9a84c;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(26, 43, 74, 0.15);
}

.testimonial-card::before {
    content: "\201C";
    font-size: 6rem;
    position: absolute;
    top: 12px;
    left: 20px;
    color: #c9a84c;
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.stars {
    margin-bottom: 16px;
}

.stars i {
    color: #c9a84c;
    font-size: 0.9rem;
    margin-right: 2px;
}

.testimonial-content p {
    font-style: italic;
    color: #444;
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 0.97rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #1a2b4a;
    color: #c9a84c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.testimonial-author h4 {
    color: #1a2b4a;
    margin-bottom: 2px;
    font-size: 1rem;
}

.author-info span {
    color: #777;
    font-size: 0.85rem;
}

/* =========================================================
   Location Section
   ========================================================= */
.location {
    padding: 100px 0;
    background-color: #2d4a7a;
}

.location .section-label {
    display: block;
    text-align: center;
}

.location h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 3rem;
}

.location-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    align-items: start;
}

.location-map iframe {
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    width: 100%;
}

.location-info {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 36px 30px;
    border-radius: 8px;
}

.location-info h3 {
    color: #c9a84c;
    font-size: 1.3rem;
    margin-bottom: 24px;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
    align-items: flex-start;
}

.info-item i {
    color: #c9a84c;
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 20px;
}

.info-item strong {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 4px;
}

.info-item p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.info-item a {
    color: rgba(255, 255, 255, 0.75);
}

.info-item a:hover {
    color: #c9a84c;
}

/* Social Media */
.social-media {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.social-media h4 {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.social-media a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-media a:hover {
    background-color: #c9a84c;
    color: #1a2b4a;
    transform: translateY(-3px);
}

.social-media a.social-linkedin {
    background-color: rgba(201, 168, 76, 0.2);
    color: #c9a84c;
}

.social-media a.social-linkedin:hover {
    background-color: #c9a84c;
    color: #1a2b4a;
}

/* =========================================================
   Contact Section
   ========================================================= */
.contact {
    padding: 100px 0;
    background-color: #ffffff;
}

.contact .section-label {
    display: block;
    text-align: center;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a2b4a;
    margin-bottom: 1rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    background-color: #1a2b4a;
    padding: 40px 32px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.85);
}

.contact-info h3 {
    color: #c9a84c;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 28px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-item i {
    color: #c9a84c;
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.93rem;
    margin: 0;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.75);
}

.contact-item a:hover {
    color: #c9a84c;
}

.contact-cta-note {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    padding: 16px 20px;
    background-color: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 6px;
}

.contact-cta-note i {
    color: #c9a84c;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-cta-note p {
    color: #c9a84c;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
}

/* Form */
.contact-form {
    background-color: #f8f9fa;
    padding: 40px 36px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(26, 43, 74, 0.08);
    border: 1px solid #e8edf3;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a2b4a;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group label span {
    color: #c9a84c;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid #d0d8e4;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.97rem;
    color: #1a1a1a;
    background-color: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231a2b4a' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #c9a84c;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aab;
}

/* =========================================================
   Footer
   ========================================================= */
footer {
    background-color: #111e33;
    color: rgba(255, 255, 255, 0.75);
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo h2 i {
    color: #c9a84c;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-social a:hover {
    background-color: #c9a84c;
    color: #1a2b4a;
    transform: translateY(-3px);
}

.footer-social a.social-linkedin {
    background-color: rgba(201, 168, 76, 0.2);
    color: #c9a84c;
}

.footer-social a.social-linkedin:hover {
    background-color: #c9a84c;
    color: #1a2b4a;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    color: #c9a84c;
    font-size: 0.8rem;
    font-family: 'DM Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-services ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: #c9a84c;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.footer-contact p i {
    color: #c9a84c;
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact a:hover {
    color: #c9a84c;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom p {
    margin-bottom: 6px;
}

.security-indicator {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: rgba(201, 168, 76, 0.7);
}

.security-indicator i {
    font-size: 0.8rem;
}

/* =========================================================
   Responsive Design — 992px (tablets landscape)
   ========================================================= */
@media screen and (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.4rem;
    }

    .about-content {
        flex-direction: column;
        gap: 40px;
    }

    .about-image img {
        height: 320px;
    }

    .differentiators {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

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

    .location-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

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

/* =========================================================
   Responsive Design — 768px (tablets portrait / large mobile)
   ========================================================= */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav ul {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: #1a2b4a;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.2);
        padding: 24px 0;
        z-index: 999;
        gap: 0;
    }

    nav ul.active {
        left: 0;
    }

    nav ul li a {
        display: block;
        padding: 14px 20px;
        font-size: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .services h2,
    .testimonials h2,
    .contact h2,
    .about-text h2 {
        font-size: 2rem;
    }

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

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

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   Responsive Design — 576px (small mobile)
   ========================================================= */
@media screen and (max-width: 576px) {
    .container {
        width: 95%;
    }

    .hero {
        margin-top: 62px;
        padding: 60px 16px;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        padding: 12px 22px;
        font-size: 0.85rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-form {
        padding: 28px 20px;
    }

    .contact-info {
        padding: 28px 20px;
    }

    .location h2,
    .services h2,
    .testimonials h2,
    .contact h2 {
        font-size: 1.8rem;
    }
}

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

    .hero {
        background-attachment: scroll;
    }
}

/* Visually hidden — accessible to screen readers, invisible on screen */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (prefers-contrast: high) {
    body {
        background-color: white;
        color: black;
    }

    a {
        text-decoration: underline;
    }

    .btn {
        border: 2px solid #000;
    }
}

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid #c9a84c;
    outline-offset: 2px;
}
