/**
 * ============================================================================
 * KINDRED EXECUTIVE - STYLESHEET
 * ============================================================================
 *
 * Welcome, Sara! This file controls how your website looks - colors, fonts,
 * spacing, and layout. Below is a guide to help you make common changes.
 *
 * ============================================================================
 * HOW TO MAKE COMMON CHANGES:
 * ============================================================================
 *
 * CHANGE BRAND COLORS:
 * Look for the ":root" section below. You can change:
 *   --color-navy     = Primary dark blue color
 *   --color-gold     = Accent/button color
 *   --color-sand     = Light background color
 *   --color-charcoal = Body text color
 *
 * CHANGE FONTS:
 * Look for the ":root" section:
 *   --font-serif = Heading font (currently Cormorant Garamond)
 *   --font-sans  = Body font (currently Lato)
 *
 * ADD A HERO BACKGROUND IMAGE:
 * Find the ".hero" section below and add:
 *   background-image: url('../images/your-image.jpg');
 *
 * CHANGE SPACING/SIZING:
 * The spacing scale uses --space-1 through --space-24
 * Smaller number = less space, larger number = more space
 *
 * ============================================================================
 * IMPORTANT: After making changes, save the file and run:
 *   firebase deploy
 * ============================================================================
 */


/* ==========================================================================
   DESIGN TOKENS (Variables)
   ==========================================================================
   These are the building blocks of your design. Change values here to
   update colors, fonts, and spacing across the entire website.
   ========================================================================== */

:root {
    /*
     * BRAND COLORS
     * -------------------------------------------------------------------------
     * To change your brand colors, edit the hex codes below.
     * Hex codes start with # and have 6 characters (letters/numbers).
     *
     * Use a color picker tool like https://htmlcolorcodes.com/color-picker/
     * to find new colors.
     */

    /* Navy Blue - Primary brand color (header, footer, headings) */
    --color-navy: #002147;
    --color-navy-dark: #001530;
    --color-navy-light: #003366;

    /* Sand/Cream - Light background sections */
    --color-sand: #F5F5DC;
    --color-sand-light: #FAFAF5;

    /* Gold - Accent color (buttons, links, highlights) */
    --color-gold: #C5A059;
    --color-gold-dark: #A8863D;
    --color-gold-light: #D4B56A;

    /* Charcoal - Body text color */
    --color-charcoal: #2C3E50;
    --color-charcoal-light: #5D6D7E;

    /* Neutral Colors */
    --color-white: #FFFFFF;
    --color-alabaster: #FAFAFA;


    /*
     * FONTS
     * -------------------------------------------------------------------------
     * Cormorant Garamond = Elegant serif font for headings
     * Lato = Clean, modern font for body text
     *
     * These are loaded from Google Fonts in the HTML file.
     * To change fonts: update both here AND in the <head> of index.html
     */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;


    /*
     * FONT SIZES
     * -------------------------------------------------------------------------
     * rem = relative size (1rem = 16px on most browsers)
     * Larger numbers = bigger text
     */
    --text-xs: 0.75rem;    /* 12px - Very small text */
    --text-sm: 0.875rem;   /* 14px - Small text, captions */
    --text-base: 1rem;     /* 16px - Normal body text */
    --text-lg: 1.125rem;   /* 18px - Slightly larger */
    --text-xl: 1.25rem;    /* 20px - Subheadings */
    --text-2xl: 1.5rem;    /* 24px - Small headings */
    --text-3xl: 1.875rem;  /* 30px - Section headings */
    --text-4xl: 2.25rem;   /* 36px - Large headings */
    --text-5xl: 3rem;      /* 48px - Hero heading */
    --text-6xl: 3.75rem;   /* 60px - Extra large */


    /*
     * SPACING
     * -------------------------------------------------------------------------
     * Used for margins and padding throughout the site.
     * Larger numbers = more space
     */
    --space-1: 0.25rem;   /* 4px */
    --space-2: 0.5rem;    /* 8px */
    --space-3: 0.75rem;   /* 12px */
    --space-4: 1rem;      /* 16px */
    --space-5: 1.25rem;   /* 20px */
    --space-6: 1.5rem;    /* 24px */
    --space-8: 2rem;      /* 32px */
    --space-10: 2.5rem;   /* 40px */
    --space-12: 3rem;     /* 48px */
    --space-16: 4rem;     /* 64px */
    --space-20: 5rem;     /* 80px */
    --space-24: 6rem;     /* 96px */


    /*
     * LAYOUT
     * -------------------------------------------------------------------------
     */
    --container-max: 1200px;      /* Maximum width of content */
    --container-padding: 1.5rem;  /* Padding on sides */
    --header-height: 80px;        /* Height of navigation bar */


    /*
     * ANIMATIONS
     * -------------------------------------------------------------------------
     */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;


    /*
     * SHADOWS
     * -------------------------------------------------------------------------
     * Subtle shadows that add depth to cards and buttons
     */
    --shadow-sm: 0 1px 2px rgba(0, 33, 71, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 33, 71, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 33, 71, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 33, 71, 0.15);


    /*
     * ROUNDED CORNERS
     * -------------------------------------------------------------------------
     */
    --radius-sm: 0.25rem;   /* Slightly rounded */
    --radius-md: 0.5rem;    /* Medium rounded */
    --radius-lg: 1rem;      /* Very rounded */
    --radius-full: 9999px;  /* Fully circular */
}


/* ==========================================================================
   BASE STYLES
   ==========================================================================
   Foundational styles that apply to the whole page.
   Generally don't need to change these.
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-charcoal);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Heading Styles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-navy);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

/* Paragraph Styles */
p {
    margin-bottom: var(--space-4);
}

p:last-child {
    margin-bottom: 0;
}

/* Link Styles */
a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-gold-dark);
}

a:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

/* Image Styles */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Bold Text */
strong {
    font-weight: 600;
    color: var(--color-navy);
}


/* ==========================================================================
   LAYOUT UTILITIES
   ==========================================================================
   Reusable classes for layout and sections.
   ========================================================================== */

/* Container - Centers content with max width */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Section - Standard vertical padding for content sections */
.section {
    padding: var(--space-20) 0;
}

/* Section with alternate background color (sand/cream) */
.section--alt {
    background-color: var(--color-sand-light);
}

/* Section Title - Centered heading for sections */
.section__title {
    text-align: center;
    margin-bottom: var(--space-12);
    font-size: var(--text-4xl);
}

/* Section CTA - centered button at bottom of section */
.section__cta {
    text-align: center;
    margin-top: var(--space-12);
}


/* ==========================================================================
   BUTTONS
   ==========================================================================
   Styles for clickable buttons.
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

/* Primary Button - Gold background (main CTA) */
.btn--primary {
    background-color: var(--color-gold);
    color: var(--color-white);
    border-color: var(--color-gold);
}

.btn--primary:hover {
    background-color: var(--color-gold-dark);
    border-color: var(--color-gold-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
}

/* Secondary Button - Outlined navy (secondary action) */
.btn--secondary {
    background-color: transparent;
    color: var(--color-navy);
    border-color: var(--color-navy);
}

.btn--secondary:hover {
    background-color: var(--color-navy);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 33, 71, 0.2);
}

/* Large Button Size */
.btn--large {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
}


/* ==========================================================================
   NAVIGATION HEADER
   ==========================================================================
   The sticky bar at the top of the page.
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background-color: transparent;
    transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

/* When user scrolls down, header gets solid background */
.header.scrolled {
    background-color: var(--color-navy);
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

/* Logo Styling */
.nav__logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-serif);
    font-size: var(--text-2xl);
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--color-white);
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

.nav__logo:hover {
    opacity: 0.9;
    color: var(--color-white);
}

.nav__logo-text {
    color: var(--color-gold);
}

.nav__logo-divider {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    margin: 0 var(--space-1);
}

/* Smaller logo on mobile */
@media (max-width: 768px) {
    .nav__logo {
        font-size: var(--text-xl);
    }
}

/* Navigation Menu */
.nav__menu {
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    list-style: none;
}

/* Navigation Links */
.nav__link {
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-white);
    text-decoration: none;
    padding: var(--space-2) 0;
    position: relative;
}

/* Underline animation on hover */
.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: width var(--transition-base);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.nav__cta {
    display: none;
}

/* Mobile menu buttons (hamburger) */
.nav__toggle,
.nav__close {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    padding: var(--space-2);
}


/* --------------------------------------------------------------------------
   Mobile Navigation (phones and small tablets)
   -------------------------------------------------------------------------- */

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--color-navy);
        flex-direction: column;
        justify-content: center;
        padding: var(--space-8);
        transition: right var(--transition-base);
        box-shadow: var(--shadow-xl);
    }

    .nav__menu.show {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: var(--space-6);
    }

    .nav__link {
        font-size: var(--text-lg);
    }

    .nav__close {
        display: block;
        position: absolute;
        top: var(--space-6);
        right: var(--space-6);
    }

    .nav__toggle {
        display: block;
    }

    .nav__cta {
        display: none;
    }
}

/* Show CTA button on larger screens */
@media (min-width: 769px) {
    .nav__cta {
        display: inline-flex;
    }
}


/* ==========================================================================
   HERO SECTION
   ==========================================================================
   The large banner at the top of the page.

   TO ADD A BACKGROUND IMAGE:
   Add this line inside the .hero block:
   background-image: url('../images/your-hero-image.jpg');
   background-size: cover;
   background-position: center;
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
    overflow: hidden;

    /*
     * TO ADD A BACKGROUND IMAGE:
     * Uncomment these lines and update the image path:
     *
     * background-image: url('../images/hero-bg.jpg');
     * background-size: cover;
     * background-position: center;
     */
}

/* Subtle decorative overlay */
.hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(197, 160, 89, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(197, 160, 89, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    text-align: center;
    max-width: 900px;
    padding: var(--space-20) var(--container-padding);
}

/* Hero Headline */
.hero__title {
    font-size: clamp(var(--text-3xl), 5vw, var(--text-6xl));
    color: var(--color-white);
    margin-bottom: var(--space-6);
    font-weight: 500;
}

/* Hero Subtitle/Description */
.hero__subtitle {
    font-size: clamp(var(--text-base), 2vw, var(--text-xl));
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-10);
    line-height: 1.8;
}


/* ==========================================================================
   POSITIONING SECTION
   ==========================================================================
   Brief statement about what you do.
   ========================================================================== */

.positioning {
    padding: var(--space-16) 0;
}

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

.positioning__text {
    font-size: var(--text-xl);
    line-height: 1.9;
    color: var(--color-charcoal);
}

/* Bold words in positioning text appear in gold */
.positioning__text strong {
    color: var(--color-gold-dark);
}


/* ==========================================================================
   PHILOSOPHY SECTION
   ==========================================================================
   Quote-style section with your core belief.
   ========================================================================== */

.philosophy {
    padding: var(--space-20) 0;
}

.philosophy__quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: var(--text-2xl);
    line-height: 1.8;
    color: var(--color-navy);
}

.philosophy__quote p {
    margin: 0;
}


/* ==========================================================================
   VALUES SECTION
   ==========================================================================
   Three-column grid of core values.
   ========================================================================== */

.values__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-8);
}

.value-card {
    text-align: center;
    padding: var(--space-8);
    border-radius: var(--radius-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

/* Subtle lift on hover */
.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.value-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-6);
    color: var(--color-gold);
    transition: transform var(--transition-base);
}

/* Scale icon on card hover */
.value-card:hover .value-card__icon {
    transform: scale(1.1);
}

.value-card__title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
}

.value-card__text {
    color: var(--color-charcoal-light);
    line-height: 1.8;
}

/* Minimal value card variant (no description) */
.value-card--minimal {
    padding: var(--space-6);
}

.value-card--minimal .value-card__title {
    margin-bottom: 0;
}


/* ==========================================================================
   FOUNDER SECTION
   ==========================================================================
   Your personal message with photo.
   ========================================================================== */

.founder__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: center;
}

/* On larger screens, photo on left, text on right */
@media (min-width: 768px) {
    .founder__grid {
        grid-template-columns: 300px 1fr;
        gap: var(--space-16);
    }
}

.founder__image {
    display: flex;
    justify-content: center;
}

/*
 * FOUNDER PHOTO STYLING
 * -------------------------------------------------------------------------
 * Controls the size and appearance of the founder photo.
 * - width/height: Size of the photo
 * - object-fit: cover = Crops image to fill the space
 * - object-position: center top = Shows face from top of image
 * - border-radius: Rounded corners
 */
.founder__portrait-img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--color-white);
}

/* Larger photo on bigger screens */
@media (min-width: 768px) {
    .founder__portrait-img {
        width: 320px;
        height: 320px;
    }
}

.founder__content .section__title {
    text-align: left;
    margin-bottom: var(--space-6);
}

.founder__quote {
    font-size: var(--text-lg);
    line-height: 1.9;
    color: var(--color-charcoal);
    margin-bottom: var(--space-6);
}

.founder__quote p {
    margin-bottom: var(--space-4);
}

.founder__signature {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.founder__name {
    font-family: var(--font-serif);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-navy);
}

.founder__title {
    font-size: var(--text-sm);
    color: var(--color-charcoal-light);
    letter-spacing: 0.05em;
}


/* ==========================================================================
   SERVICES SECTION
   ==========================================================================
   Three-column grid of service cards.
   ========================================================================== */

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-8);
}

.service-card {
    background-color: var(--color-white);
    border: 1px solid rgba(0, 33, 71, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-8);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

/* Lift effect when hovering over card */
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-bottom: var(--space-6);
    color: var(--color-gold);
    transition: transform var(--transition-base);
}

/* Scale icon on card hover */
.service-card:hover .service-card__icon {
    transform: scale(1.1);
}

.service-card__title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-4);
}

.service-card__text {
    color: var(--color-charcoal-light);
    line-height: 1.8;
}


/* ==========================================================================
   ABOUT SECTION
   ==========================================================================
   Two-column layout with company info and "The Kindred Difference" card.
   ========================================================================== */

.about__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
}

/* Two columns on larger screens */
@media (min-width: 900px) {
    .about__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-16);
    }
}

.about__content .section__title {
    text-align: left;
    margin-bottom: var(--space-6);
}

.about__subtitle {
    font-size: var(--text-xl);
    margin-top: var(--space-8);
    margin-bottom: var(--space-4);
}

.about__text {
    line-height: 1.9;
    color: var(--color-charcoal);
}

.about__text--lead {
    font-size: var(--text-lg);
    color: var(--color-charcoal);
}

.about__text--lead strong {
    color: var(--color-gold-dark);
}

.about__cta {
    margin-top: var(--space-6);
}

/* Founder bio with small photo */
.about__founder {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    margin-top: var(--space-8);
}

@media (min-width: 600px) {
    .about__founder {
        flex-direction: row;
        align-items: flex-start;
    }
}

/*
 * ABOUT SECTION PHOTO
 * -------------------------------------------------------------------------
 * Smaller photo used in the About section.
 */
.about__founder-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius-md);
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.about__founder-content {
    flex: 1;
}

.about__founder-content .about__subtitle {
    margin-top: 0;
}

/* "The Kindred Difference" highlighted card */
.difference-card {
    background-color: var(--color-navy);
    color: var(--color-white);
    padding: var(--space-10);
    border-radius: var(--radius-md);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

/* Subtle lift on hover */
.difference-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 33, 71, 0.3);
}

.difference-card__title {
    color: var(--color-gold);
    margin-bottom: var(--space-6);
}

.difference-card__text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
}


/* ==========================================================================
   ABOUT THE FOUNDER SECTION
   ==========================================================================
   Dedicated section for founder bio and photo.
   ========================================================================== */

.about-founder__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: center;
}

/* On larger screens, photo on left, text on right */
@media (min-width: 768px) {
    .about-founder__grid {
        grid-template-columns: 180px 1fr;
        gap: var(--space-12);
    }
}

.about-founder__image {
    display: flex;
    justify-content: center;
}

.about-founder__img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

/* Subtle scale on hover */
.about-founder__img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

@media (min-width: 768px) {
    .about-founder__img {
        width: 180px;
        height: 180px;
    }
}

.about-founder__content .section__title {
    text-align: left;
    margin-bottom: var(--space-6);
}

.about-founder__text {
    font-size: var(--text-lg);
    line-height: 1.9;
    color: var(--color-charcoal);
    margin-bottom: var(--space-6);
}

.about-founder__signature {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.about-founder__name {
    font-family: var(--font-serif);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-navy);
}

.about-founder__title {
    font-size: var(--text-sm);
    color: var(--color-charcoal-light);
    letter-spacing: 0.05em;
}

.about-founder__cta {
    margin-top: var(--space-6);
}


/* ==========================================================================
   CONTACT SECTION
   ==========================================================================
   Call-to-action area with buttons and social links.
   ========================================================================== */

.contact {
    background: linear-gradient(to bottom, var(--color-white) 0%, var(--color-sand-light) 100%);
}

.contact__content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact__intro {
    font-size: var(--text-lg);
    line-height: 1.9;
    margin-bottom: var(--space-10);
}

/* Button row */
.contact__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-10);
}

/* Buttons side-by-side on larger screens */
@media (min-width: 480px) {
    .contact__actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* Social links row */
.contact__links {
    display: flex;
    justify-content: center;
}

.contact__social {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-navy);
    font-weight: 500;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    transition: background-color var(--transition-fast);
}

.contact__social:hover {
    background-color: rgba(0, 33, 71, 0.05);
    color: var(--color-navy);
}


/* ==========================================================================
   FOOTER
   ==========================================================================
   Bottom section with logo, links, and copyright.
   ========================================================================== */

.footer {
    background-color: var(--color-navy);
    color: var(--color-white);
    padding: var(--space-12) 0 var(--space-8);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-6);
    margin-top: var(--space-10);
    text-align: center;
}

.footer__copyright {
    font-size: var(--text-sm);
    opacity: 0.6;
    margin: 0;
}


/* ==========================================================================
   ACCESSIBILITY
   ==========================================================================
   Ensures the site works well for all users.
   ========================================================================== */

/* Reduce motion for users who prefer it */
@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;
    }
}

/* Skip link for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-gold);
    color: var(--color-white);
    padding: var(--space-2) var(--space-4);
    z-index: 9999;
}

.skip-link:focus {
    top: 0;
}


/* ==========================================================================
   FOOTER GRID LAYOUT
   ========================================================================== */

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
}

@media (min-width: 768px) {
    .footer__grid {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: var(--space-16);
        align-items: start;
    }
}

.footer__brand,
.footer__column {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    font-family: var(--font-serif);
    font-size: var(--text-xl);
    font-weight: 600;
    letter-spacing: 0.15em;
}

.footer__logo-text {
    color: var(--color-gold);
}

.footer__logo-divider {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.footer__description {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 400px;
    margin: 0;
}

.footer__brand-details {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    margin-top: var(--space-2);
}

.footer__brand-divider {
    color: rgba(255, 255, 255, 0.3);
}

.footer__brand-email {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer__brand-email:hover {
    color: var(--color-gold);
}

.footer__heading {
    font-family: var(--font-serif);
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--color-gold);
    margin: 0;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer__nav-link {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer__nav-link:hover {
    color: var(--color-gold);
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a.footer__contact-item:hover {
    color: var(--color-gold);
}

.footer__contact-icon {
    color: var(--color-gold);
    flex-shrink: 0;
}


/* ==========================================================================
   ENTRANCE ANIMATIONS
   ==========================================================================
   Subtle fade-in effects for sections and cards.
   ========================================================================== */

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

.section {
    animation: fadeInUp 0.6s ease-out both;
}

.service-card,
.value-card,
.difference-card {
    animation: fadeInUp 0.6s ease-out both;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }


/* ==========================================================================
   HERO SCROLL INDICATOR
   ========================================================================== */

.hero__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.hero__scroll-indicator:hover {
    color: rgba(255, 255, 255, 0.9);
}

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