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

:root {
    --navy: #0f2744;
    --navy-mid: #1e3a5f;
    --navy-light: #2c5282;
    --accent: #4a5568;
    --accent-light: #718096;
    --accent-dark: #2d3748;
    --gray-900: #2d3748;
    --gray-700: #4a5568;
    --gray-600: #64748b;
    --gray-500: #718096;
    --gray-300: #cbd5e0;
    --gray-200: #e2e8f0;
    --gray-100: #f7fafc;
    --gray-50: #fafbfc;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 7rem;
    --space-3xl: 9rem;
    --shadow-sm: 0 1px 3px rgba(15, 39, 68, 0.04);
    --shadow-md: 0 4px 20px rgba(15, 39, 68, 0.06), 0 2px 6px rgba(15, 39, 68, 0.04);
    --shadow-lg: 0 12px 40px rgba(15, 39, 68, 0.08), 0 4px 12px rgba(15, 39, 68, 0.04);
    --shadow-xl: 0 24px 64px rgba(15, 39, 68, 0.1), 0 8px 24px rgba(15, 39, 68, 0.06);
}

/* Skeleton loaders */
@keyframes skeleton-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.skeleton {
    background: linear-gradient(
        90deg,
        var(--gray-200) 0%,
        var(--gray-100) 50%,
        var(--gray-200) 100%
    );
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s ease-in-out infinite;
    border-radius: 6px;
}

.skeleton-text {
    height: 1em;
    margin-bottom: 0.5em;
}

.skeleton-text:last-child {
    width: 75%;
}

.skeleton-heading {
    height: 2rem;
    width: 60%;
    margin: 0 auto 1rem;
}

.skeleton-subheading {
    height: 1.25rem;
    width: 80%;
    margin: 0 auto 2rem;
}

.skeleton-img {
    width: 100%;
    padding-bottom: 40%;
    border-radius: 8px;
}

.skeleton-card {
    height: 180px;
    border-radius: 10px;
}

.skeleton-input {
    height: 48px;
    border-radius: 8px;
}

.skeleton-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
}

/* Skeleton overlay - shown during page load */
.skeleton-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: white;
    padding: 2rem 1.5rem;
    overflow-y: auto;
    transition: opacity 0.4s ease-out, visibility 0.4s ease-out;
}

body:not(.loading) .skeleton-overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.skeleton-logo {
    max-width: 420px;
    margin: 0 auto 2rem;
}

.skeleton-hero {
    max-width: 600px;
    margin: 0 auto 4rem;
    text-align: center;
}

.skeleton-sections {
    max-width: 720px;
    margin: 0 auto;
}

.skeleton-section {
    margin-bottom: 4rem;
}

.skeleton-section .skeleton-heading {
    margin-bottom: 2rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    color: var(--gray-900);
    line-height: 1.75;
    letter-spacing: 0.015em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* Scroll reveal animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Logo banner */
.site-logo {
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    background: white;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.site-logo img {
    max-width: 420px;
    width: 75%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--space-md) var(--space-xl);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15, 39, 68, 0.06);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-links a {
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: color 0.25s;
}

.nav-links a:hover {
    color: var(--navy);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0.5rem;
    min-width: 180px;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    list-style: none;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown-menu li {
    padding: 0;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--gray-700);
}

.nav-dropdown-menu a:hover {
    background: var(--gray-50);
    color: var(--navy);
}

.cta-button {
    font-family: 'Roboto', sans-serif;
    background: var(--navy);
    color: white;
    border: 2px solid var(--navy);
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.cta-button:hover {
    background: white;
    color: var(--navy);
}

/* Hero */
.hero {
    color: white;
    text-align: center;
}

/* Luxury Hero - full-width, 100vh, background image */
.hero-luxury {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-slides {
    position: absolute;
    inset: 0;
    transform: translateZ(0);
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-bg-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 39, 68, 0.5) 0%, rgba(15, 39, 68, 0.7) 100%);
}

.hero-content-luxury {
    position: relative;
    z-index: 1;
    padding: var(--space-2xl) var(--space-lg) var(--space-3xl);
    max-width: 920px;
}

.hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.75rem, 5.5vw, 4.25rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: var(--space-md);
    letter-spacing: -0.03em;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.15);
    opacity: 0;
    animation: heroFadeIn 1s ease-out 0.2s forwards;
}

.hero-subheadline-luxury {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.92;
    margin-bottom: var(--space-xl);
    opacity: 0;
    animation: heroFadeIn 1s ease-out 0.4s forwards;
}

.hero-buttons-luxury {
    opacity: 0;
    animation: heroFadeIn 1s ease-out 0.6s forwards;
}

@keyframes heroFadeIn {
    to { opacity: 1; }
}

.hero-subheadline {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
}

.hero-btn {
    display: inline-block;
    padding: 0.95rem 2rem;
    border-radius: 6px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: all 0.25s ease;
}

.hero-btn:first-child,
.hero-btn:last-child {
    background: white;
    color: var(--navy);
    border: 2px solid white;
}

.hero-btn:hover:first-child,
.hero-btn:hover:last-child {
    background: transparent;
    color: white;
}

.hero-btn-outline {
    background: transparent !important;
    border: 2px solid rgba(255,255,255,0.8);
    color: white !important;
}

.hero-btn-outline:hover {
    background: rgba(255,255,255,0.15) !important;
    border-color: white;
}

/* Section borders */
section {
    border-bottom: 1px solid rgba(226, 232, 240, 0.4);
}

/* About */
.about-section {
    padding: var(--space-3xl) var(--space-xl);
    background: var(--gray-50);
}

.about-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 500;
    margin-bottom: var(--space-xl);
    color: var(--navy);
    letter-spacing: -0.02em;
}

.about-content {
    max-width: 680px;
    margin: 0 auto;
}

.about-content p {
    margin-bottom: var(--space-lg);
    line-height: 1.9;
    color: var(--gray-700);
    font-size: 1.05rem;
    font-weight: 400;
}

/* How We Help - Light background for contrast with testimonials */
/* How We Help page - gradient backdrop for glassmorphism */
.how-we-help-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f2744 0%, #1e3a5f 25%, #2c5282 50%, #1e3a5f 75%, #0f2744 100%);
    background-attachment: fixed;
}

.how-we-help {
    padding: var(--space-3xl) var(--space-xl);
    position: relative;
}

.how-we-help-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.how-we-help-glass {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-2xl);
    padding: var(--space-xl) var(--space-lg);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.how-we-help-label {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-sm);
}

.how-we-help h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 500;
    color: white;
    letter-spacing: -0.02em;
}

.help-grid-wrapper {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
}

.help-grid-divider {
    position: absolute;
    inset: -15% -5% -15%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.065;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200' preserveAspectRatio='none'%3E%3Cpath fill='%2394a3b8' d='M0,80 Q150,40 300,80 T600,80 T900,80 T1200,80 L1200,200 L0,200 Z'/%3E%3Cpath fill='%2394a3b8' d='M0,120 Q200,80 400,120 T800,120 T1200,120 L1200,200 L0,200 Z' opacity='0.6'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.help-card {
    padding: var(--space-xl) var(--space-lg);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.help-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

.help-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.help-card:hover .help-number {
    color: white;
}

.help-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: white;
}

.help-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

@supports not (backdrop-filter: blur(16px)) {
    .help-card {
        background: rgba(30, 58, 95, 0.85);
    }
    .how-we-help-glass {
        background: rgba(30, 58, 95, 0.9);
    }
}

@media (max-width: 900px) {
    .help-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Meet the Team */
.meet-team {
    padding: var(--space-3xl) var(--space-xl);
    background: linear-gradient(180deg, #e8eef5 0%, #f0f4f9 50%, #f7fafc 100%);
}

.meet-team h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 500;
    margin-bottom: var(--space-sm);
    color: var(--navy);
    letter-spacing: -0.02em;
}

.meet-team h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--navy-light);
    margin: var(--space-sm) auto 0;
    border-radius: 2px;
}

.team-tagline {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--navy-mid);
    margin-bottom: var(--space-sm);
}

.team-intro {
    text-align: center;
    max-width: 560px;
    margin: 0 auto var(--space-xl);
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 1.05rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    position: relative;
    background: white;
    border-radius: 10px;
    padding: var(--space-xl);
    text-align: center;
    border: 1px solid rgba(15, 39, 68, 0.08);
    border-top: 4px solid var(--navy-light);
    box-shadow: var(--shadow-md);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--navy);
}

.team-photo {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--navy-light);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-photo img.photo-bw {
    filter: grayscale(100%);
}

.team-photo img.photo-crisp,
.broker-photo img.photo-crisp {
    filter: grayscale(100%) contrast(1.08);
    image-rendering: -webkit-optimize-contrast;
}

.team-photo.photo-white-bg {
    background: white;
}

.team-photo.photo-align-top img {
    object-position: center top;
}

.team-photo.photo-align-center img {
    object-position: 45% 35%;
}

.placeholder-photo {
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-photo span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.team-card h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.9rem;
    color: var(--navy-light);
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.team-bio-more {
    display: none;
    margin-bottom: 1rem;
}

.team-bio-more.expanded {
    display: block;
}

.team-bio-more p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.team-bio-more p:last-child {
    margin-bottom: 0;
}

.team-read-more-btn {
    background: none;
    border: none;
    color: var(--navy);
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-bottom: 1rem;
}

.team-read-more-btn:hover {
    text-decoration: underline;
}

.team-contact-info {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.team-contact-info a {
    color: var(--navy);
    text-decoration: none;
}

.team-contact-info a:hover {
    text-decoration: underline;
}

.team-contact-btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--navy);
    border: 2px solid var(--navy);
    color: white;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 6px;
    border: 2px solid var(--navy);
    transition: all 0.2s;
}

.team-contact-btn:hover {
    background: white;
    color: var(--navy);
}

/* Why Choose - Navy background */
.why-choose {
    padding: var(--space-3xl) var(--space-xl);
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.why-choose h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 500;
    margin-bottom: var(--space-xl);
    color: white;
    letter-spacing: -0.02em;
}

.why-list {
    max-width: 520px;
    margin: 0 auto 2rem;
    list-style: none;
}

.why-list li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: rgba(255, 255, 255, 0.95);
}

.why-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

.why-note {
    text-align: center;
    font-style: italic;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.75;
}

/* Testimonials - Navy background */
.testimonials {
    padding: var(--space-3xl) 0;
    background: var(--navy);
    overflow: hidden;
}

.testimonials h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 500;
    margin-bottom: var(--space-xl);
    color: white;
    letter-spacing: -0.02em;
}

.testimonial-scroll-wrapper {
    overflow: hidden;
}

.testimonial-scroll {
    display: flex;
    gap: var(--space-lg);
    animation: testimonial-scroll 40s linear infinite;
}

.testimonial-scroll:hover {
    animation-play-state: paused;
}

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

.testimonial-scroll .testimonial-card {
    flex: 0 0 320px;
}

.testimonial-card {
    background: white;
    padding: var(--space-xl);
    border-radius: 10px;
    border: none;
    box-shadow: var(--shadow-md);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: var(--space-md);
}

.testimonial-author {
    font-size: 0.9rem;
    color: var(--gray-500);
    font-style: italic;
}

/* Contact */
.contact {
    padding: var(--space-3xl) var(--space-xl);
    background: var(--gray-50);
}

.contact h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 500;
    margin-bottom: var(--space-sm);
    color: var(--navy);
    letter-spacing: -0.02em;
}

.contact-intro {
    text-align: center;
    margin-bottom: var(--space-xl);
    color: var(--gray-500);
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-form {
    max-width: 480px;
    margin: 0 auto var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-form input,
.contact-form textarea {
    padding: 1rem 1.25rem;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(15, 39, 68, 0.08);
}

.contact-form button {
    font-family: 'Roboto', sans-serif;
    background: var(--navy);
    color: white;
    border: 2px solid var(--navy);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.25s;
}

.contact-form button:hover {
    background: white;
    color: var(--navy);
}

.contact-info {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-info p {
    margin: 0.5rem 0;
}

.contact-info a {
    color: var(--navy);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-broker {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    max-width: 900px;
    margin: var(--space-xl) auto 0;
    padding: var(--space-xl);
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(15, 39, 68, 0.08);
}

.broker-photo {
    flex-shrink: 0;
}

.broker-photo img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(15, 39, 68, 0.12);
    box-shadow: var(--shadow-sm);
}

.broker-photo img.photo-bw {
    filter: grayscale(100%);
}

.broker-photo img.photo-align-top,
.broker-photo.photo-align-top img {
    object-position: center top;
}

.broker-message h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--navy);
}

.broker-tagline {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.broker-message p {
    margin-bottom: 1rem;
    line-height: 1.75;
    color: var(--gray-500);
}

.broker-message p:last-child {
    margin-bottom: 0;
}

.broker-cta a {
    color: var(--navy);
    font-weight: 600;
    text-decoration: none;
}

.broker-cta a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
    background: var(--navy);
    color: #e2e8f0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem 2.5rem;
    margin-bottom: 1rem;
}

.footer-top a,
.footer-top span {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-top a:hover {
    color: white;
}

.footer-icon {
    color: #90cdf4;
    margin-right: 0.35rem;
    vertical-align: middle;
    display: inline-block;
}

.footer-bottom {
    font-size: 0.95rem;
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.contact-badges {
    text-align: center;
    margin-top: var(--space-2xl);
    padding: var(--space-xl) var(--space-md);
}

.contact-badges img {
    max-width: 500px;
    width: 90%;
    height: auto;
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.social-card {
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(15, 39, 68, 0.08);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.social-card:hover {
    box-shadow: var(--shadow-lg);
}

.social-card-cta {
    padding: var(--space-xl);
    text-align: center;
}

.social-card-cta h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 500;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
}

.community-intro {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.75;
    margin-bottom: var(--space-lg);
}

.social-follow-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--navy);
    color: white;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    border: 2px solid var(--navy);
    transition: all 0.2s;
}

.social-follow-btn:hover {
    background: white;
    color: var(--navy);
}

.social-card-embed {
    padding: 1rem;
    overflow: hidden;
    min-height: 0;
    height: fit-content;
    max-height: 552px;
    align-self: start;
}

.social-section {
    background: var(--gray-50);
    padding: var(--space-3xl) var(--space-xl);
    text-align: center;
    overflow: hidden;
}

.facebook-scroll-container {
    height: 520px;
    max-height: 520px;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 8px;
    -webkit-overflow-scrolling: touch;
    contain: layout;
}

.facebook-scroll-container iframe {
    display: block;
    max-width: 100%;
    border-radius: 6px;
    pointer-events: auto;
    min-height: 0;
}

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

    .social-card-cta {
        text-align: center;
    }
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin: 0.5rem 0 0;
    line-height: 1.6;
}

/* See Why We're Like No Other */
.see-why-section {
    padding: var(--space-3xl) var(--space-xl);
    text-align: center;
    background: var(--navy);
    color: white;
}

.see-why-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 500;
    margin-bottom: var(--space-md);
    color: white;
}

.see-why-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 560px;
    margin: 0 auto var(--space-lg);
    line-height: 1.65;
}

.see-why-btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    background: white;
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s;
}

.see-why-btn:hover {
    background: var(--gray-100);
    transform: translateY(-1px);
}

/* Communities We Serve */
.communities-section {
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
}

.communities-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 500;
    color: var(--navy);
    margin-bottom: var(--space-lg);
}

.communities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.community-pill {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gray-100);
    color: var(--navy);
    text-decoration: none;
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.community-pill:hover {
    background: var(--navy);
    color: white;
}

/* Awards / Recognition */
.awards-section {
    padding: var(--space-xl) var(--space-xl);
    text-align: center;
    background: var(--gray-50);
}

.awards-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 500;
    color: var(--navy);
    margin-bottom: var(--space-md);
}

.awards-section p {
    color: var(--gray-600);
    max-width: 540px;
    margin: 0 auto;
}

.awards-section a {
    color: var(--navy);
    font-weight: 500;
}

.awards-section a:hover {
    text-decoration: underline;
}

/* Footer columns */
.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: var(--space-lg);
    padding: var(--space-xl) var(--space-xl) var(--space-md);
    text-align: left;
}

.footer-main h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: var(--space-sm);
}

.footer-main p,
.footer-main ul {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.footer-main ul {
    list-style: none;
}

.footer-main a {
    color: var(--gray-600);
    text-decoration: none;
}

.footer-main a:hover {
    color: var(--navy);
}

/* Team tagline & card link */
.team-tagline {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 0.25rem;
}

.team-card h3 a {
    color: inherit;
    text-decoration: none;
}

.team-card h3 a:hover {
    color: var(--navy);
    text-decoration: underline;
}

/* Breadcrumb */
.breadcrumb {
    padding: var(--space-md) var(--space-xl);
    font-size: 0.9rem;
    color: var(--gray-600);
}

.breadcrumb a {
    color: var(--gray-600);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--navy);
}

/* Community page (e.g. Orlando) */
.community-hero {
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
    background: var(--gray-50);
}

.community-content-images {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.community-content-images img {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    object-fit: cover;
}

.community-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--navy);
    margin-bottom: var(--space-md);
}

.community-hero-sub {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 540px;
    margin: 0 auto var(--space-lg);
}

.community-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
}

.community-cta-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--navy);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s;
}

.community-cta-btn:hover {
    background: var(--navy-mid);
}

.community-cta-btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.community-cta-btn-outline:hover {
    background: var(--navy);
    color: white;
}

.community-content {
    padding: var(--space-2xl) var(--space-xl);
    max-width: 720px;
    margin: 0 auto;
}

.community-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 500;
    color: var(--navy);
    margin-bottom: var(--space-md);
}

.community-content p {
    color: var(--gray-700);
    line-height: 1.75;
    margin-bottom: var(--space-md);
}

.community-neighbors {
    padding: var(--space-xl);
    text-align: center;
    background: var(--gray-50);
}

.community-neighbors h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 500;
    color: var(--navy);
    margin-bottom: var(--space-lg);
}

.community-neighbors-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.community-neighbors-grid a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: white;
    color: var(--navy);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
}

.community-neighbors-grid a:hover {
    background: var(--navy);
    color: white;
}

.community-contact {
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
}

.community-contact h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 500;
    color: var(--navy);
    margin-bottom: var(--space-md);
}

.community-contact p {
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
}

.community-contact-btns {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
}

/* Agent page */
.agent-hero {
    padding: var(--space-2xl) var(--space-xl);
    background: var(--gray-50);
}

.agent-hero-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: var(--space-xl);
    align-items: center;
    flex-wrap: wrap;
}

.agent-photo {
    flex-shrink: 0;
}

.agent-photo img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.agent-heading h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--navy);
}

.agent-tagline {
    font-size: 1.1rem;
    color: var(--gray-600);
    font-style: italic;
    margin: 0.25rem 0 var(--space-md);
}

.agent-cta-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--navy);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s;
}

.agent-cta-btn:hover {
    background: var(--navy-mid);
}

.agent-bio {
    padding: var(--space-2xl) var(--space-xl);
}

.agent-bio-inner {
    max-width: 720px;
    margin: 0 auto;
}

.agent-bio-inner p {
    margin-bottom: var(--space-md);
    line-height: 1.75;
    color: var(--gray-700);
}

.agent-contact {
    padding: var(--space-xl);
    text-align: center;
    background: var(--gray-50);
}

.agent-contact h2 {
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: var(--space-md);
}

.agent-contact-info {
    margin-bottom: var(--space-md);
}

.agent-contact-info p {
    margin: 0.25rem 0;
}

.agent-contact-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--navy);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
}

.agent-contact-btn:hover {
    background: var(--navy-mid);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-links {
        justify-content: center;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .hero-subheadline {
        font-size: 1rem;
    }

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

    .contact-broker {
        flex-direction: column;
        text-align: center;
        padding: var(--space-xl);
        margin: var(--space-xl) auto 0;
    }

    .about-section,
    .how-we-help,
    .meet-team,
    .why-choose,
    .florida-living,
    .contact {
        padding: 4rem 2rem;
    }
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--navy-mid);
    color: white;
}
