/* =========================================================
   TOTAL PET CARE — DESIGN SYSTEM
   ========================================================= */

:root {

    /* ---------- Brand ---------- */

    --color-primary: #1769aa;
    --color-primary-dark: #124f80;
    --color-primary-light: #eaf4fb;


    /* ---------- Neutrals ---------- */

    --color-text: #222222;
    --color-text-muted: #5f6368;

    --color-background: #ffffff;
    --color-background-soft: #f5f8fa;

    --color-border: #dfe5e9;


    /* ---------- Typography ---------- */

    --font-heading: Arial, sans-serif;
    --font-body: Arial, sans-serif;


    /* ---------- Layout ---------- */

    --container-width: 1180px;


    /* ---------- Spacing ---------- */

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;


    /* ---------- UI ---------- */

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 20px;

    --shadow-sm:
        0 2px 8px rgba(0, 0, 0, 0.06);

    --shadow-md:
        0 10px 30px rgba(0, 0, 0, 0.10);
}


/* =========================================================
   BASE
   ========================================================= */

* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;

    font-family: var(--font-body);

    color: var(--color-text);

    background-color:
        var(--color-background);

    line-height: 1.6;
}


img {
    max-width: 100%;
    display: block;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
a {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.container {

    width:
        min(
            calc(100% - 2rem),
            var(--container-width)
        );

    margin-inline: auto;
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3,
h4 {

    margin-top: 0;

    font-family:
        var(--font-heading);

    line-height: 1.2;
}


h1 {
    font-size: 3.5rem;
}


h2 {
    font-size: 2.5rem;
}


h3 {
    font-size: 1.5rem;
}


p {
    margin-top: 0;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background-color:
        rgba(255, 255, 255, 0.96);

    border-bottom:
        1px solid var(--color-border);

    backdrop-filter:
        blur(10px);
}


.header-inner {

    min-height: 88px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: var(--space-lg);
}


/* ---------- Brand ---------- */

.brand {

    display: inline-flex;

    align-items: center;

    gap: 1rem;

    flex-shrink: 0;
}


.brand-logo {

    width: 76px;

    height: 76px;

    object-fit: contain;
}


.brand-text {

    display: flex;

    flex-direction: column;

    line-height: 1.15;
}


.brand-doctor {

    font-size: 1.15rem;

    font-weight: 700;
}


.brand-clinic {

    margin-top: 0.35rem;

    color:
        var(--color-primary);

    font-size: 0.95rem;

    font-weight: 600;
}


/* ---------- Navigation ---------- */

.site-navigation {

    display: flex;

    align-items: center;

    gap: 1.75rem;
}


.site-navigation a {

    color:
        var(--color-text);

    font-size: 0.95rem;

    font-weight: 600;

    transition:
        color 0.2s ease;
}


.site-navigation a:hover {

    color:
        var(--color-primary);
}


/* ---------- Mobile menu button ---------- */

.menu-toggle {

    display: none;

    border: 0;

    background: transparent;

    color:
        var(--color-text);

    font-size: 1.8rem;

    cursor: pointer;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f5f8fa 100%
        );

    padding-block:
        5.5rem;
}


.hero-inner {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 0.9fr);

    align-items: center;

    gap: 5rem;
}


/* ---------- Hero text ---------- */

.hero-content {

    max-width: 620px;
}


.hero-eyebrow {

    margin-bottom: 1rem;

    color:
        var(--color-primary);

    font-size: 0.9rem;

    font-weight: 700;

    letter-spacing:
        0.04em;

    text-transform:
        uppercase;
}


.hero h1 {

    margin-bottom: 1.5rem;

    font-size: clamp(
        2.8rem,
        5vw,
        4.25rem
    );

    letter-spacing:
        -0.035em;
}


.hero-description {

    max-width: 560px;

    margin-bottom: 2rem;

    color:
        var(--color-text-muted);

    font-size: 1.15rem;

    line-height: 1.7;
}


/* ---------- Hero buttons ---------- */

.hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 0.75rem;

    margin-bottom: 1.5rem;
}


.button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 50px;

    padding:
        0.75rem 1.35rem;

    border-radius:
        var(--radius-sm);

    font-weight: 700;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.button:hover {

    transform:
        translateY(-2px);
}


.button-primary {

    color:
        #ffffff;

    background-color:
        var(--color-primary);

    box-shadow:
        var(--shadow-sm);
}


.button-primary:hover {

    background-color:
        var(--color-primary-dark);

    box-shadow:
        var(--shadow-md);
}


.button-secondary {

    color:
        var(--color-primary);

    background-color:
        var(--color-primary-light);
}


.button-secondary:hover {

    background-color:
        #dceef9;
}


/* ---------- Hero location ---------- */

.hero-location {

    color:
        var(--color-text-muted);

    font-size: 0.9rem;

    margin-bottom: 0;
}


/* ---------- Hero image ---------- */

.hero-image-wrapper {

    position: relative;

    padding:
        0 0.75rem 0.75rem 0;
}


.hero-image {

    position: relative;

    z-index: 2;

    width: 100%;

    aspect-ratio: 4 / 5;

    object-fit: cover;

    border-radius:
        var(--radius-lg);

    box-shadow:
        var(--shadow-md);
}


.hero-image-accent {

    position: absolute;

    right: 0;

    bottom: 0;

    width: 85%;

    height: 85%;

    border-radius:
        var(--radius-lg);

    background:
        var(--color-primary);

    opacity: 0.15;
}


/* =========================================================
   TRUST STRIP
   ========================================================= */

.trust-strip {

    border-bottom:
        1px solid var(--color-border);

    background:
        #ffffff;
}


.trust-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);
}


.trust-item {

    min-height: 120px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 1rem;

    text-align: center;

    border-right:
        1px solid var(--color-border);
}


.trust-item:last-child {

    border-right: 0;
}


.trust-item strong {

    margin-bottom: 0.25rem;

    color:
        var(--color-primary);

    font-size: 1.5rem;
}


.trust-item span {

    color:
        var(--color-text-muted);

    font-size: 0.85rem;
}


/* =========================================================
   SECTIONS
   ========================================================= */

.section {

    padding-block:
        var(--space-2xl);
}


.section p {

    color:
        var(--color-text-muted);

    max-width: 650px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .site-navigation {

        gap: 1rem;
    }


    .hero-inner {

        grid-template-columns:
            1fr;

        gap: 3rem;
    }


    .hero-content {

        max-width: 700px;
    }


    .hero-image-wrapper {

        max-width: 650px;
    }
}


@media (max-width: 800px) {

    .header-inner {

        min-height: 70px;
    }


    .brand-logo {

        width: 58px;

        height: 58px;
    }


    .brand-doctor {

        font-size: 1rem;
    }


    .brand-clinic {

        font-size: 0.85rem;
    }


    .site-navigation {

        display: none;
    }


    .menu-toggle {

        display: block;
    }


    .hero {

        padding-block:
            3.5rem;
    }


    .hero h1 {

        font-size:
            clamp(
                2.5rem,
                10vw,
                3.5rem
            );
    }


    .trust-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .trust-item:nth-child(2) {

        border-right: 0;
    }


    .trust-item:nth-child(-n+2) {

        border-bottom:
            1px solid var(--color-border);
    }
}


@media (max-width: 500px) {

    .container {

        width:
            min(
                calc(100% - 1.5rem),
                var(--container-width)
            );
    }


    .brand {

        gap: 0.6rem;
    }


    .brand-logo {

        width: 54px;

        height: 54px;
    }


    .hero {

        padding-block:
            2.75rem;
    }


    .hero-description {

        font-size: 1rem;
    }


    .hero-actions {

        flex-direction: column;

        align-items: stretch;
    }


    .button {

        width: 100%;
    }


    .hero-image-wrapper {

        padding-right: 0.5rem;

        padding-bottom: 0.5rem;
    }


    .trust-item {

        min-height: 105px;
    }


    .trust-item strong {

        font-size: 1.25rem;
    }
}
/* =========================================================
   MOBILE NAVIGATION
   ========================================================= */

@media (max-width: 800px) {

    .site-header {
        position: sticky;
    }

    .header-inner {
        position: relative;
    }

    .site-navigation.is-open {
        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 0.5rem 1rem 1rem;

        background-color: #ffffff;

        border-bottom:
            1px solid var(--color-border);

        box-shadow:
            var(--shadow-md);
    }

    .site-navigation.is-open a {
        padding: 0.85rem 0.5rem;

        border-bottom:
            1px solid var(--color-border);
    }

    .site-navigation.is-open a:last-child {
        border-bottom: 0;
    }
}
/* =========================================================
   WHY DR RICHA
   ========================================================= */

.why-section {
    background-color:
        var(--color-background);
}


.section-heading {
    max-width: 760px;

    margin-bottom:
        3.5rem;
}


.section-eyebrow {
    margin-bottom: 0.75rem;

    color:
        var(--color-primary);

    font-size: 0.9rem;

    font-weight: 700;

    letter-spacing:
        0.04em;

    text-transform:
        uppercase;
}


.section-heading h2 {
    margin-bottom: 1.25rem;

    font-size:
        clamp(
            2rem,
            4vw,
            3rem
        );

    letter-spacing:
        -0.025em;
}


.section-heading > p:last-child {
    margin-bottom: 0;

    color:
        var(--color-text-muted);

    font-size: 1.05rem;
}


/* ---------- Feature cards ---------- */

.why-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 1.25rem;
}


.why-card {

    padding:
        1.75rem;

    border:
        1px solid var(--color-border);

    border-radius:
        var(--radius-md);

    background:
        #ffffff;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.why-card:hover {

    transform:
        translateY(-4px);

    box-shadow:
        var(--shadow-md);
}


.why-icon {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 1.5rem;

    border-radius: 50%;

    color:
        var(--color-primary);

    background:
        var(--color-primary-light);

    font-size: 0.8rem;

    font-weight: 800;
}


.why-card h3 {

    margin-bottom: 0.75rem;

    font-size: 1.25rem;
}


.why-card p {

    margin-bottom: 0;

    color:
        var(--color-text-muted);

    font-size: 0.95rem;

    line-height: 1.65;
}


/* ---------- Responsive ---------- */

@media (max-width: 900px) {

    .why-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }
}


@media (max-width: 500px) {

    .section-heading {

        margin-bottom:
            2.5rem;
    }


    .why-grid {

        grid-template-columns:
            1fr;
    }


    .why-card {

        padding:
            1.5rem;
    }
}
/* =========================================================
   SERVICES
   ========================================================= */

.services-section {
    background:
        var(--color-background-soft);
}


.services-heading {
    margin-bottom: 3rem;
}


/* ---------- Service grid ---------- */

.services-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 1.25rem;
}


/* ---------- Service card ---------- */

.service-card {

    position: relative;

    display: grid;

    grid-template-columns:
        auto 1fr;

    gap: 1.5rem;

    padding: 2rem;

    border:
        1px solid var(--color-border);

    border-radius:
        var(--radius-md);

    background:
        #ffffff;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.service-card:hover {

    transform:
        translateY(-4px);

    box-shadow:
        var(--shadow-md);
}


/* ---------- Number ---------- */

.service-number {

    color:
        var(--color-primary);

    font-size: 0.8rem;

    font-weight: 800;

    letter-spacing:
        0.04em;
}


/* ---------- Content ---------- */

.service-content h3 {

    margin-bottom:
        0.75rem;

    font-size:
        1.4rem;
}


.service-content p {

    margin-bottom:
        1.25rem;

    color:
        var(--color-text-muted);

    font-size:
        0.95rem;

    line-height:
        1.65;
}


/* ---------- Service link ---------- */

.service-link {

    display: inline-flex;

    align-items: center;

    gap: 0.5rem;

    color:
        var(--color-primary);

    font-size:
        0.9rem;

    font-weight:
        700;
}


.service-link span {

    transition:
        transform 0.2s ease;
}


.service-link:hover span {

    transform:
        translateX(4px);
}


/* ---------- Primary services ---------- */

.service-card-primary {

    border-top:
        3px solid var(--color-primary);
}


/* ---------- Responsive ---------- */

@media (max-width: 700px) {

    .services-grid {

        grid-template-columns:
            1fr;
    }


    .service-card {

        padding:
            1.5rem;
    }
}


@media (max-width: 500px) {

    .service-card {

        grid-template-columns:
            1fr;

        gap: 0.75rem;
    }


    .service-number {

        margin-bottom:
            0.25rem;
    }
}

/* =========================================================
   ABOUT DR RICHA
   ========================================================= */

.about-section {
    background:
        var(--color-background);
}


/* ---------- Main layout ---------- */

.about-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    align-items: center;

    gap: 5rem;

    margin-bottom:
        5rem;
}


/* ---------- Doctor image ---------- */

.about-image-wrapper {

    position: relative;

    padding:
        0 0.75rem 0.75rem 0;
}


.about-image {

    position: relative;

    z-index: 2;

    width: 100%;

    aspect-ratio: 4 / 5;

    object-fit: cover;

    border-radius:
        var(--radius-lg);

    box-shadow:
        var(--shadow-md);
}


.about-image-accent {

    position: absolute;

    right: 0;

    bottom: 0;

    width: 85%;

    height: 85%;

    border-radius:
        var(--radius-lg);

    background:
        var(--color-primary);

    opacity:
        0.15;
}


/* ---------- Content ---------- */

.about-content h2 {

    margin-bottom:
        1.5rem;

    font-size:
        clamp(
            2rem,
            4vw,
            3rem
        );

    letter-spacing:
        -0.025em;
}


.about-lead {

    color:
        var(--color-text);

    font-size:
        1.1rem;

    line-height:
        1.7;
}


/* ---------- Credentials ---------- */

.credentials {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 1rem;

    margin-block:
        2rem;
}


.credential {

    display: flex;

    flex-direction: column;

    padding:
        1rem;

    border-left:
        3px solid var(--color-primary);

    background:
        var(--color-background-soft);
}


.credential strong {

    margin-bottom:
        0.25rem;

    font-size:
        1rem;
}


.credential span {

    color:
        var(--color-text-muted);

    font-size:
        0.8rem;
}


.about-content > p:not(.section-eyebrow):not(.about-lead) {

    color:
        var(--color-text-muted);

    line-height:
        1.7;
}


/* ---------- Text link ---------- */

.text-link {

    display: inline-flex;

    align-items: center;

    gap: 0.5rem;

    margin-top:
        0.5rem;

    color:
        var(--color-primary);

    font-weight:
        700;
}


.text-link span {

    transition:
        transform 0.2s ease;
}


.text-link:hover span {

    transform:
        translateX(4px);
}


/* ---------- Professional experience ---------- */

.experience-highlight {

    display: grid;

    grid-template-columns:
        auto 1fr;

    align-items: center;

    gap: 2.5rem;

    padding:
        2.5rem;

    border-radius:
        var(--radius-lg);

    background:
        var(--color-primary-light);
}


.experience-number {

    color:
        var(--color-primary);

    font-size:
        clamp(
            2.5rem,
            5vw,
            4rem
        );

    font-weight:
        800;

    line-height:
        1;
}


.experience-content h3 {

    margin-bottom:
        0.75rem;

    font-size:
        1.35rem;
}


.experience-content p {

    margin-bottom:
        0.75rem;

    color:
        var(--color-text-muted);

    font-size:
        0.95rem;
}


.experience-content p:last-child {

    margin-bottom:
        0;
}


/* ---------- Responsive ---------- */

@media (max-width: 900px) {

    .about-grid {

        grid-template-columns:
            1fr;

        gap: 3rem;
    }


    .about-image-wrapper {

        max-width:
            650px;
    }
}


@media (max-width: 600px) {

    .credentials {

        grid-template-columns:
            1fr;
    }


    .experience-highlight {

        grid-template-columns:
            1fr;

        gap: 1.25rem;

        padding:
            1.75rem;
    }


    .experience-number {

        font-size:
            2.75rem;
    }
}

/* =========================================================
   CONTACT / LOCATION
   ========================================================= */

.contact-section {
    background:
        var(--color-background-soft);
}


.contact-heading {
    margin-bottom:
        3rem;
}


.contact-grid {

    display: grid;

    grid-template-columns:
        0.85fr
        1.15fr;

    gap:
        4rem;

    align-items:
        stretch;
}


.contact-details {

    display:
        flex;

    flex-direction:
        column;

    gap:
        2rem;
}


.contact-item {

    display:
        grid;

    grid-template-columns:
        46px 1fr;

    gap:
        1rem;

    align-items:
        start;
}


.contact-icon {

    width:
        46px;

    height:
        46px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        50%;

    background:
        var(--color-primary-light);

    font-size:
        1.15rem;
}


.contact-item h3 {

    margin-bottom:
        0.4rem;

    font-size:
        1.1rem;
}


.contact-item p {

    margin-bottom:
        0.75rem;

    color:
        var(--color-text-muted);

    font-size:
        0.95rem;

    line-height:
        1.65;
}


.contact-item p:last-child {
    margin-bottom: 0;
}


.contact-phone {

    display:
        inline-block;

    color:
        var(--color-primary);

    font-size:
        1.1rem;

    font-weight:
        700;
}


.hours-note {

    font-size:
        0.85rem !important;

    font-style:
        italic;
}


.contact-actions {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        0.75rem;

    margin-top:
        1rem;
}


/* ---------- Map ---------- */

.map-container {

    min-height:
        450px;

    overflow:
        hidden;

    border-radius:
        var(--radius-lg);

    box-shadow:
        var(--shadow-sm);

    background:
        #e9eef1;
}


.map-container iframe {

    display:
        block;

    width:
        100%;

    height:
        100%;

    min-height:
        450px;

    border:
        0;
}


/* ---------- Responsive ---------- */

@media (max-width: 800px) {

    .contact-grid {

        grid-template-columns:
            1fr;

        gap:
            3rem;
    }


    .map-container,
    .map-container iframe {

        min-height:
            350px;
    }
}


@media (max-width: 500px) {

    .contact-actions {

        flex-direction:
            column;

        align-items:
            stretch;
    }


    .contact-actions .button {

        width:
            100%;
    }
}

/* =========================================================
   REVIEWS
   ========================================================= */

.reviews-section {
    background:
        var(--color-background);
}


.reviews-heading {
    margin-bottom:
        3rem;
}


/* ---------- Review grid ---------- */

.reviews-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 1.25rem;
}


/* ---------- Review card ---------- */

.review-card {

    display: flex;

    flex-direction: column;

    padding:
        2rem;

    border:
        1px solid var(--color-border);

    border-radius:
        var(--radius-md);

    background:
        #ffffff;

    box-shadow:
        var(--shadow-sm);
}


/* ---------- Stars ---------- */

.review-stars {

    margin-bottom:
        1.25rem;

    color:
        var(--color-primary);

    font-size:
        1rem;

    letter-spacing:
        0.12em;
}


/* ---------- Quote ---------- */

.review-card blockquote {

    flex: 1;

    margin:
        0 0 1.5rem 0;

    color:
        var(--color-text);

    font-size:
        1rem;

    line-height:
        1.7;
}


.review-card blockquote::before {

    content:
        "“";

    display:
        block;

    margin-bottom:
        -1.25rem;

    color:
        var(--color-primary-light);

    font-size:
        4rem;

    font-family:
        Georgia,
        serif;

    line-height:
        1;
}


/* ---------- Author ---------- */

.review-author {

    display:
        flex;

    flex-direction:
        column;

    padding-top:
        1rem;

    border-top:
        1px solid var(--color-border);
}


.review-author strong {

    margin-bottom:
        0.25rem;

    font-size:
        0.95rem;
}


.review-author span {

    color:
        var(--color-text-muted);

    font-size:
        0.8rem;
}


/* ---------- Footer ---------- */

.reviews-footer {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        2rem;

    margin-top:
        2rem;

    padding-top:
        2rem;

    border-top:
        1px solid var(--color-border);
}


.review-summary {

    display:
        flex;

    align-items:
        center;

    gap:
        1rem;
}


.review-summary > strong {

    font-size:
        2rem;

    line-height:
        1;
}


.summary-stars {

    color:
        var(--color-primary);

    letter-spacing:
        0.1em;

    font-size:
        0.85rem;
}


.review-summary span {

    display:
        block;

    margin-top:
        0.2rem;

    color:
        var(--color-text-muted);

    font-size:
        0.8rem;
}


/* ---------- Responsive ---------- */

@media (max-width: 700px) {

    .reviews-grid {

        grid-template-columns:
            1fr;
    }


    .reviews-footer {

        flex-direction:
            column;

        align-items:
            flex-start;
    }
}
/* =========================================================
   MOBILE ACTION BAR
   ========================================================= */

.mobile-action-bar {

    display:
        none;
}


@media (max-width: 700px) {

    .mobile-action-bar {

        position:
            fixed;

        left:
            0;

        right:
            0;

        bottom:
            0;

        z-index:
            1000;

        display:
            grid;

        grid-template-columns:
            repeat(3, 1fr);

        background:
            #ffffff;

        border-top:
            1px solid var(--color-border);

        box-shadow:
            0 -4px 20px rgba(0, 0, 0, 0.08);
    }


    .mobile-action {

        display:
            flex;

        flex-direction:
            column;

        align-items:
            center;

        justify-content:
            center;

        gap:
            0.2rem;

        min-height:
            58px;

        color:
            var(--color-text);

        font-size:
            0.75rem;

        font-weight:
            700;

        text-decoration:
            none;
    }


    .mobile-action span {

        font-size:
            1.1rem;
    }


    .mobile-action:hover {

        text-decoration:
            none;
    }


    body {

        padding-bottom:
            58px;
    }

}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {

    padding-top:
        4rem;

    background:
        #17232d;

    color:
        #ffffff;
}


.footer-grid {

    display:
        grid;

    grid-template-columns:
        1.4fr
        0.7fr
        1fr
        1fr;

    gap:
        3rem;

    padding-bottom:
        3rem;
}


.footer-logo {

    width:
        170px;

    height:
        auto;

    margin-bottom:
        1rem;
}


.footer-brand p {

    max-width:
        330px;

    color:
        rgba(255,255,255,0.72);

    line-height:
        1.7;
}


.footer-column {

    display:
        flex;

    flex-direction:
        column;

    gap:
        0.55rem;
}


.footer-column h3 {

    margin-bottom:
        0.75rem;

    font-size:
        0.95rem;
}


.footer-column a,
.footer-column p {

    color:
        rgba(255,255,255,0.72);

    font-size:
        0.9rem;

    line-height:
        1.6;

    text-decoration:
        none;
}


.footer-column a:hover {

    color:
        #ffffff;
}


.footer-bottom {

    display:
        flex;

    justify-content:
        space-between;

    gap:
        1rem;

    padding:
        1.5rem 0;

    border-top:
        1px solid rgba(255,255,255,0.12);
}


.footer-bottom p {

    margin:
        0;

    color:
        rgba(255,255,255,0.55);

    font-size:
        0.8rem;
}


@media (max-width: 800px) {

    .footer-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 500px) {

    .footer-grid {

        grid-template-columns:
            1fr;
    }


    .footer-bottom {

        flex-direction:
            column;
    }

}
/* =========================================================
   NAVIGATION SCROLL OFFSET
   Keeps anchored sections visible below the sticky header
   ========================================================= */

section[id] {
    scroll-margin-top: 10px;
}

@media (max-width: 700px) {
    section[id] {
        scroll-margin-top: 75px;
    }
}