/* ========== DESIGN SYSTEM — Gillooly Reality ========== */

/* --- CSS Variables --- */
:root {
    --color-primary: #1a1a2e;
    --color-primary-hover: #2a2a45;
    --color-gold: #b08d57;
    --color-gold-light: #c9a96e;
    --color-dark: #0f0f1a;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-text-muted: #999999;
    --color-bg: #ffffff;
    --color-bg-warm: #f9f7f4;
    --color-bg-light: #f5f5f5;
    --color-border: rgba(0, 0, 0, 0.08);

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    --max-width: 1280px;
    --section-padding: 120px;
    --section-padding-md: 80px;
    --section-padding-sm: 64px;
    --radius: 8px;
    --radius-sm: 4px;

    --shadow-sm: 0 2px 16px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.08);

    --transition: 0.3s ease;
    --transition-slow: 0.4s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    background: var(--color-bg);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.15;
    color: var(--color-primary);
}

ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Override WordPress block/default styles that re-add list bullets */
.wp-block-list,
ul.check-list,
.footer-col ul,
.nav-menu,
ul.nav-menu,
.site-footer ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0;
}

/* --- Layout --- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: var(--section-padding) 0;
}

.section--warm {
    background: var(--color-bg-warm);
}

.section--dark {
    background: var(--color-primary);
    color: #ffffff;
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: #ffffff;
}

/* --- Typography Scale --- */
.h1, h1 { font-size: 72px; }
.h2, h2 { font-size: 42px; }
.h3, h3 { font-size: 24px; }
.h4, h4 { font-size: 18px; }

.text-lg { font-size: 19px; line-height: 1.7; }
.text-md { font-size: 17px; line-height: 1.8; }
.text-sm { font-size: 15px; line-height: 1.7; }
.text-xs { font-size: 13px; line-height: 1.6; }

.text-light { color: var(--color-text-light); }
.text-muted { color: var(--color-text-muted); }
.text-gold { color: var(--color-gold); }
.text-white { color: #ffffff; }
.text-center { text-align: center; }

/* --- Section Labels --- */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.section-label--light {
    color: var(--color-gold-light);
}

/* --- Section Headers --- */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header .section-sub {
    font-size: 17px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.section-cta {
    text-align: center;
    margin-top: 56px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    gap: 8px;
}

.btn--sm { padding: 10px 24px; font-size: 13px; }
.btn--lg { padding: 16px 36px; font-size: 15px; }

.btn--primary {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
}
.btn--primary:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
}

.btn--outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.btn--outline:hover {
    background: var(--color-primary);
    color: #ffffff;
}

.btn--white {
    background: #ffffff;
    color: var(--color-primary);
    border-color: #ffffff;
}
.btn--white:hover {
    background: rgba(255, 255, 255, 0.9);
}

.btn--outline-white {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}
.btn--outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.btn--gold {
    background: transparent;
    color: var(--color-gold);
    border-color: var(--color-gold);
}
.btn--gold:hover {
    background: var(--color-gold);
    color: #ffffff;
}

/* ========== NAVIGATION ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-slow);
    background: transparent;
}

/* Admin bar offset */
.admin-bar .site-header {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 1px 0 var(--color-border);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-logo img {
    height: 44px;
    width: auto;
    transition: filter var(--transition);
}

.site-header:not(.scrolled) .nav-logo img {
    filter: brightness(0) invert(1);
}

.nav-menu {
    display: flex;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width var(--transition);
}

.nav-menu a:hover::after,
.nav-menu .current-menu-item a::after {
    width: 100%;
}

.site-header.scrolled .nav-menu a {
    color: var(--color-text);
}

.site-header.scrolled .nav-menu a:hover {
    color: var(--color-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-phone {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.site-header.scrolled .nav-phone {
    color: var(--color-text);
}

.site-header:not(.scrolled) .nav-actions .btn--primary {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.site-header:not(.scrolled) .nav-actions .btn--primary:hover {
    background: rgba(255, 255, 255, 0.25);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all var(--transition);
}

.site-header.scrolled .nav-toggle span {
    background: var(--color-primary);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 15, 26, 0.85) 0%, rgba(26, 26, 46, 0.6) 50%, rgba(15, 15, 26, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    padding-top: 80px;
}

.hero-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 24px;
}

.hero h1 {
    color: #ffffff;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 24px;
    max-width: 750px;
}

.hero-sub {
    font-size: 19px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    max-width: 560px;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-scroll span {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* ========== SERVICE CARDS ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    display: flex;
    flex-direction: column;
    padding: 40px 32px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    transition: all var(--transition-slow);
    text-decoration: none;
    position: relative;
}

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

.service-card--featured {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.service-card--featured h3,
.service-card--featured p,
.service-card--featured .service-card__link {
    color: #ffffff;
}

.service-card--featured p {
    color: rgba(255, 255, 255, 0.7);
}

.service-card--featured .service-card__icon {
    color: var(--color-gold);
}

.service-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    color: var(--color-gold);
}

.service-card__icon svg {
    width: 100%;
    height: 100%;
}

.featured-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    background: rgba(176, 141, 87, 0.15);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 16px;
    width: fit-content;
}

.service-card h3 {
    margin-bottom: 12px;
    color: var(--color-primary);
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-light);
    flex: 1;
}

.service-card__link {
    display: inline-block;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gold);
}

/* ========== SPLIT SECTIONS ========== */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split--flush {
    gap: 0;
    min-height: 700px;
}

.split__image {
    position: relative;
    overflow: hidden;
}

.split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.split--flush .split__image img {
    border-radius: 0;
}

.split__content {
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ========== NUMBERED FEATURES ========== */
.numbered-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.numbered-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.numbered-feature__number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    min-width: 48px;
}

.numbered-feature h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.numbered-feature p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ========== CHECK LIST ========== */
.check-list {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0;
}

.check-list li {
    font-size: 15px;
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    list-style: none !important;
}

.check-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: 700;
}

.check-list li::marker {
    content: none;
    display: none;
}

/* ========== STAT BOX ========== */
.stat-box {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--color-gold);
    color: #ffffff;
    padding: 28px 32px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.stat-box__number {
    display: block;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-box__label {
    font-size: 13px;
    line-height: 1.4;
    opacity: 0.9;
}

/* ========== PROPERTY CARDS ========== */
.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.property-card {
    background: #ffffff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-slow);
}

.property-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.property-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.property-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.property-card:hover .property-card__image img {
    transform: scale(1.05);
}

.property-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--color-primary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
}

.property-card__details {
    padding: 24px;
}

.property-card__price {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
    display: block;
    margin-bottom: 4px;
}

.property-card__details h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.property-card__address {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.property-card__meta {
    display: flex;
    gap: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

.property-card__meta span {
    font-size: 13px;
    color: var(--color-text-light);
}

/* ========== RENTAL CARDS ========== */
.rentals-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.rentals-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    min-height: 480px;
}

.rental-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.rental-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.rental-card:hover img {
    transform: scale(1.05);
}

.rental-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    color: #ffffff;
}

.rental-card__type {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: 8px;
}

.rental-card__overlay h3 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 4px;
}

.rental-card--featured .rental-card__overlay h3 {
    font-size: 32px;
}

.rental-card__overlay p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 16px;
}

/* ========== COMMERCIAL TYPES ========== */
.commercial-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 36px;
}

.comm-type {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #ffffff;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
}

.comm-type svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

.comm-type span {
    font-size: 14px;
    font-weight: 500;
}

/* ========== TRUST / STATS ========== */
.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.trust-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.trust-stat {
    text-align: center;
    padding: 28px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-stat__number {
    display: block;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.trust-stat__label {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-values {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
}

.trust-value {
    text-align: center;
}

.trust-value img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.trust-value h4 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.trust-value p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
}

/* ========== CTA SECTION ========== */
.cta-section {
    text-align: center;
}

.cta-section__inner {
    max-width: 640px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 48px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 36px;
}

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

/* ========== AGENT CARDS ========== */
.agent-card {
    text-align: center;
    background: #ffffff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-slow);
}

.agent-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.agent-card__image {
    aspect-ratio: 1;
    overflow: hidden;
}

.agent-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.agent-card__info {
    padding: 24px;
}

.agent-card__info h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.agent-card__role {
    font-size: 14px;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.agent-card__contact {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.agent-card__contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-bg-warm);
    color: var(--color-text-light);
    transition: all var(--transition);
}

.agent-card__contact a:hover {
    background: var(--color-gold);
    color: #ffffff;
}

/* ========== TESTIMONIAL CARDS ========== */
.testimonial-card {
    background: #ffffff;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.testimonial-card .star-rating {
    margin-bottom: 16px;
    color: var(--color-gold);
    font-size: 18px;
}

.testimonial-card .star-rating .star {
    color: var(--color-border);
}

.testimonial-card .star-rating .star.filled {
    color: var(--color-gold);
}

.testimonial-card blockquote {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card__author {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary);
}

.testimonial-card__agent {
    font-size: 13px;
    color: var(--color-text-muted);
}

/* ========== VENDOR CARDS ========== */
.vendor-card {
    background: #ffffff;
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: all var(--transition-slow);
}

.vendor-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.vendor-card h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.vendor-card__category {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.vendor-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.vendor-card__contact-info {
    font-size: 14px;
    color: var(--color-text-muted);
}

.vendor-card__contact-info a {
    color: var(--color-gold);
}

/* ========== FOOTER ========== */
.site-footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.65);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 60px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

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

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--color-gold);
    color: #ffffff;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.footer-col a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--color-gold);
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-address,
.footer-phone {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}

.footer-phone a {
    color: var(--color-gold-light);
}

.footer-phone strong {
    color: rgba(255, 255, 255, 0.7);
}

.footer-directions {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.35);
    margin-left: 24px;
}

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

/* ========== PAGE TEMPLATES ========== */
.page-header {
    padding: 160px 0 60px;
    background: var(--color-primary);
    text-align: center;
}

.page-header h1 {
    color: #ffffff;
    font-size: 48px;
    margin-bottom: 12px;
}

.page-header .section-label {
    color: var(--color-gold-light);
}

.page-content {
    padding: 80px 0;
}

.page-content .entry-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
}

.page-content .entry-content p {
    margin-bottom: 1.5em;
}

.page-content .entry-content h2 {
    margin-top: 2em;
    margin-bottom: 0.5em;
}

/* ========== ARCHIVE GRIDS ========== */
.archive-grid {
    display: grid;
    gap: 32px;
    padding: 80px 0;
}

.archive-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.archive-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

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

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 40px 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    :root {
        --section-padding: var(--section-padding-md);
    }

    .h1, h1 { font-size: 52px; }

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

    .split, .split--flush {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .split--flush .split__image {
        height: 400px;
    }

    .split__content {
        padding: 48px 40px;
    }

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

    .rentals-grid {
        grid-template-columns: 1fr 1fr;
        min-height: 360px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .trust-values {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .archive-grid--3 {
        grid-template-columns: 1fr 1fr;
    }

    .archive-grid--4 {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 768px) {
    :root {
        --section-padding: var(--section-padding-sm);
    }

    .container {
        padding: 0 24px;
    }

    .h1, h1 { font-size: 36px; }
    .h2, h2 { font-size: 30px; }

    .cta-section h2 { font-size: 32px; }

    .nav-menu, .nav-actions {
        display: none;
    }

    .nav-menu.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 24px;
        gap: 16px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }

    .nav-menu.open a {
        color: var(--color-text) !important;
        font-size: 16px;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        background-attachment: scroll;
    }

    .hero-scroll {
        display: none;
    }

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

    .split__content {
        padding: 32px 24px;
    }

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

    .rentals-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

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

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

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

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

    .stat-box {
        right: 16px;
        bottom: -16px;
    }

    .page-header {
        padding: 120px 0 40px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .archive-grid--3,
    .archive-grid--4,
    .archive-grid--2 {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-bottom a {
        margin-left: 0;
        margin-right: 24px;
    }
}

/* ========== WORDPRESS OVERRIDES ========== */
/* Ensure WP block styles don't break our design */
body .is-layout-flow > *,
body .is-layout-constrained > * {
    margin-block-start: 0;
    margin-block-end: 0;
}

.wp-site-blocks {
    padding-top: 0 !important;
}

/* Remove WP default list styling that conflicts */
.entry-content ul:not(.check-list),
.entry-content ol {
    padding-left: 1.5em;
    margin-bottom: 1.5em;
}

.entry-content ul:not(.check-list) li,
.entry-content ol li {
    list-style: revert;
    margin-bottom: 0.5em;
}

/* Ensure hero content sits above WP admin bar */
.hero {
    margin-top: 0;
}

/* Fix any WP default heading margins */
.section h2,
.section-header h2 {
    margin-top: 0;
}
