/*
Theme Name: Ashbury Lane Estates
Theme URI: https://ashbury.uzochi.com
Author: Ashbury Lane Vintage & Estate Services LLC
Description: A warm, elegant theme for Ashbury Lane Vintage & Estate Services
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: ashbury-lane
*/

/* ============================================================
   CSS VARIABLES & RESET
   ============================================================ */
:root {
    --cream:        #FBF7F0;
    --cream-dark:   #F2E9DC;
    --sand:         #E2D0B8;
    --gold:         #C9933A;
    --gold-light:   #E8C97A;
    --gold-pale:    #F5E9CC;
    --brown-light:  #A67C52;
    --brown:        #7A4F2E;
    --brown-dark:   #4A2C10;
    --text-dark:    #2A1A08;
    --text-med:     #5C3D1E;
    --text-light:   #8B6842;
    --white:        #FFFFFF;
    --border:       rgba(74, 44, 16, 0.14);
    --shadow:       0 4px 24px rgba(74, 44, 16, 0.10);
    --shadow-lg:    0 8px 40px rgba(74, 44, 16, 0.16);
    --radius:       8px;
    --radius-lg:    14px;
    --transition:   all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito', 'Segoe UI', sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--brown); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--brown-dark);
    line-height: 1.25;
    font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.2rem; }
p  { margin-bottom: 1.1em; color: var(--text-med); }
p:last-child { margin-bottom: 0; }

.section-title {
    text-align: center;
    margin-bottom: 0.4em;
}
.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 2.8rem;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 0.55em auto 0;
    border-radius: 2px;
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}
.section { padding: 80px 0; }
.section-alt { background: var(--cream-dark); }
.section-dark {
    background: var(--brown-dark);
    color: var(--cream);
}
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--gold-light); }
.section-dark p   { color: var(--sand); }

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}
.btn-primary {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.btn-primary:hover {
    background: var(--brown);
    border-color: var(--brown);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.btn-outline {
    background: transparent;
    color: var(--brown);
    border-color: var(--brown);
}
.btn-outline:hover {
    background: var(--brown);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-white {
    background: var(--white);
    color: var(--brown-dark);
    border-color: var(--white);
}
.btn-white:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}
.btn-sm { padding: 9px 22px; font-size: 0.85rem; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    background: var(--brown-dark);
    color: var(--sand);
    padding: 8px 0;
    font-size: 0.82rem;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.top-bar a { color: var(--gold-light); }
.top-bar a:hover { color: var(--white); }
.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.top-bar-right a { font-size: 1rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(74,44,16,0.08);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 20px;
}
.site-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}
.site-logo img {
    height: 64px;
    width: auto;
}
.logo-text { line-height: 1.2; }
.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brown-dark);
    display: block;
}
.logo-tagline {
    font-size: 0.72rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* NAV */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
    padding: 8px 13px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: var(--radius);
    white-space: nowrap;
    letter-spacing: 0.02em;
}
.main-nav a:hover,
.main-nav a.current-menu-item {
    color: var(--gold);
    background: var(--gold-pale);
}
.nav-toggle {
    display: none;
    background: none;
    border: 2px solid var(--brown);
    border-radius: var(--radius);
    padding: 8px 12px;
    cursor: pointer;
    color: var(--brown);
    font-size: 1.3rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--brown-dark);
}
.hero-bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.45;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(74,44,16,0.75) 0%, rgba(42,26,8,0.5) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 60px 0;
}
.hero-eyebrow {
    font-size: 0.82rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1rem;
    font-weight: 600;
}
.hero h1 {
    color: var(--white);
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero p {
    color: var(--sand);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 560px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   FEATURED SALE BANNER
   ============================================================ */
.featured-sale {
    background: var(--gold);
    padding: 28px 0;
}
.featured-sale .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.featured-sale-badge {
    background: var(--brown-dark);
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 6px;
    display: inline-block;
}
.featured-sale h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 4px;
}
.featured-sale p { color: rgba(255,255,255,0.9); margin: 0; font-size: 0.95rem; }

/* ============================================================
   ABOUT PREVIEW
   ============================================================ */
.about-preview .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-image-wrap {
    position: relative;
}
.about-image-wrap img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
}
.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 18px 22px;
    text-align: center;
    box-shadow: var(--shadow);
}
.about-image-badge .badge-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    display: block;
}
.about-image-badge .badge-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
}
.about-content .eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.8rem;
}
.about-content h2 { margin-bottom: 1rem; }
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 2rem 0;
}
.stat-item {
    text-align: center;
    padding: 16px;
    background: var(--cream-dark);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
}
.stat-label { font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; }

/* ============================================================
   SERVICES CARDS
   ============================================================ */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: var(--shadow);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}
.service-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--gold-pale);
    color: var(--gold);
    font-size: 1.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}
.service-card h3 { margin-bottom: 0.7rem; font-size: 1.2rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--cream-dark); }
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow);
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--gold-light);
    line-height: 1;
    position: absolute;
    top: 12px;
    left: 24px;
    opacity: 0.6;
}
.testimonial-text {
    font-style: italic;
    color: var(--text-med);
    line-height: 1.75;
    margin-bottom: 1.2rem;
    padding-top: 1.5rem;
}
.testimonial-author {
    font-weight: 700;
    color: var(--brown-dark);
    font-size: 0.92rem;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 100%);
    padding: 64px 0;
    text-align: center;
}
.cta-banner h2 { color: var(--gold-light); margin-bottom: 0.8rem; }
.cta-banner p  { color: var(--sand); font-size: 1.05rem; margin-bottom: 2rem; max-width: 540px; margin-left: auto; margin-right: auto; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 2.5rem;
}
.contact-item {
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.contact-item .contact-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
}
.contact-item h4 { margin-bottom: 0.4rem; }
.contact-item a  { color: var(--brown); font-weight: 600; }

/* ============================================================
   PAGE BANNER (interior pages)
   ============================================================ */
.page-banner {
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 100%);
    padding: 56px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-banner h1 { color: var(--white); margin-bottom: 0.5rem; position: relative; }
.page-banner .breadcrumb { color: var(--gold-light); font-size: 0.88rem; position: relative; }
.page-banner .breadcrumb a { color: var(--sand); }
.page-banner .breadcrumb a:hover { color: var(--gold-light); }

/* ============================================================
   PAGE CONTENT
   ============================================================ */
.page-content { padding: 64px 0; }
.content-wrap { max-width: 860px; margin: 0 auto; }
.content-wrap h2 { margin: 2rem 0 0.8rem; }
.content-wrap h3 { margin: 1.6rem 0 0.6rem; color: var(--brown); }
.content-wrap ul {
    list-style: disc;
    padding-left: 1.4em;
    margin-bottom: 1.1em;
}
.content-wrap ul li { color: var(--text-med); margin-bottom: 0.4em; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-intro {
    max-width: 700px;
    margin: 0 auto 3.5rem;
    text-align: center;
}
.service-detail-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.service-detail-card .card-header {
    background: linear-gradient(135deg, var(--brown-dark), var(--brown));
    padding: 28px 32px;
}
.service-detail-card .card-header h3 { color: var(--gold-light); margin: 0; }
.service-detail-card .card-body { padding: 28px 32px; }
.service-feature-list { list-style: none !important; padding: 0 !important; }
.service-feature-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-med);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.service-feature-list li::before {
    content: '✦';
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 0.75rem;
}
.service-feature-list li:last-child { border-bottom: none; }

/* ============================================================
   5 RULES / CHOOSE PAGE
   ============================================================ */
.rule-card {
    display: flex;
    gap: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    margin-bottom: 24px;
    transition: var(--transition);
}
.rule-card:hover { border-color: var(--gold); transform: translateX(4px); }
.rule-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    min-width: 52px;
    opacity: 0.7;
}
.rule-card h3 { color: var(--brown-dark); margin-bottom: 0.5rem; font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.05em; }

/* ============================================================
   UPCOMING / PREVIOUS SALES
   ============================================================ */
.sale-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.sale-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.sale-card-header {
    background: linear-gradient(135deg, var(--brown-dark), var(--brown));
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}
.sale-card-header h3 { color: var(--white); font-size: 1.1rem; margin: 0; }
.sale-badge {
    background: var(--gold);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.sale-card-body { padding: 20px 24px; }
.sale-info { display: flex; gap: 18px; margin-bottom: 12px; flex-wrap: wrap; }
.sale-info span { font-size: 0.85rem; color: var(--text-light); }
.sale-info span strong { color: var(--text-dark); }
.sale-items { list-style: none; padding: 0; }
.sale-items li {
    padding: 5px 0;
    font-size: 0.88rem;
    color: var(--text-med);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    border-bottom: 1px solid var(--border);
}
.sale-items li:last-child { border-bottom: none; }
.sale-items li::before { content: '→'; color: var(--gold); flex-shrink: 0; }

/* Archive list */
.sale-archive { margin-top: 2.5rem; }
.archive-year {
    background: var(--brown-dark);
    color: var(--gold-light);
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    padding: 12px 20px;
    border-radius: var(--radius);
    margin-bottom: 8px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.archive-months {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.archive-month-tag {
    background: var(--cream-dark);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 0.82rem;
    color: var(--text-med);
}

/* Photo gallery */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 2rem;
}
.photo-gallery img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
}
.photo-gallery img:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    text-align: center;
}
.team-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top;
}
.team-card-body { padding: 20px; }
.team-card-body h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card-body .role {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    font-weight: 700;
}

/* ============================================================
   REAL ESTATE SECTION
   ============================================================ */
.realtor-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    display: flex;
    gap: 0;
}
.realtor-card img {
    width: 200px;
    object-fit: cover;
    object-position: top;
    flex-shrink: 0;
}
.realtor-card-body { padding: 28px 32px; }
.realtor-card-body h3 { margin-bottom: 4px; }
.realtor-card-body .brokerage {
    font-size: 0.82rem;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}
.realtor-contact { display: flex; flex-direction: column; gap: 6px; margin-top: 1rem; }
.realtor-contact a { color: var(--brown); font-weight: 600; font-size: 0.9rem; }
.realtor-contact a:hover { color: var(--gold); }

/* ============================================================
   MID-MOD PAGE
   ============================================================ */
.midmod-intro {
    max-width: 680px;
    margin: 0 auto 3rem;
    text-align: center;
}
.coming-soon-card {
    text-align: center;
    padding: 80px 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--sand);
    max-width: 600px;
    margin: 0 auto;
}
.coming-soon-card .cs-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.coming-soon-card h3 { margin-bottom: 0.8rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--brown-dark);
    color: var(--sand);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand img { height: 56px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1) opacity(0.85); }
.footer-brand p { font-size: 0.9rem; color: var(--sand); opacity: 0.85; }
.footer-col h4 {
    color: var(--gold-light);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: var(--sand); font-size: 0.9rem; opacity: 0.85; }
.footer-col ul li a:hover { color: var(--gold-light); opacity: 1; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.9rem; opacity: 0.85; }
.footer-contact-item a { color: var(--sand); }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.82rem;
    opacity: 0.7;
}
.social-links { display: flex; gap: 12px; }
.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
}
.social-links a:hover { background: var(--gold); color: var(--white); }

/* ============================================================
   SUBSCRIBE FORM
   ============================================================ */
.subscribe-section { background: var(--cream-dark); padding: 56px 0; text-align: center; }
.subscribe-section h2 { margin-bottom: 0.5rem; }
.subscribe-section p { margin-bottom: 1.8rem; }
.subscribe-form { display: flex; max-width: 460px; margin: 0 auto; gap: 0; }
.subscribe-form input {
    flex: 1;
    padding: 13px 18px;
    border: 2px solid var(--border);
    border-right: none;
    border-radius: var(--radius) 0 0 var(--radius);
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    background: var(--white);
    color: var(--text-dark);
    outline: none;
}
.subscribe-form input:focus { border-color: var(--gold); }
.subscribe-form button {
    padding: 13px 24px;
    background: var(--gold);
    color: var(--white);
    border: 2px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}
.subscribe-form button:hover { background: var(--brown); border-color: var(--brown); }

/* ============================================================
   GOLD DIVIDER
   ============================================================ */
.gold-divider {
    text-align: center;
    padding: 12px 0;
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 0.5em;
    opacity: 0.5;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .about-preview .container { gap: 40px; }
}

@media (max-width: 768px) {
    .section { padding: 56px 0; }
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .about-preview .container { grid-template-columns: 1fr; }
    .about-image-badge { bottom: 12px; right: 12px; }
    .about-stats { grid-template-columns: repeat(3, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .realtor-card { flex-direction: column; }
    .realtor-card img { width: 100%; height: 250px; }
    .photo-gallery { grid-template-columns: repeat(2, 1fr); }
    .hero { min-height: 460px; }
    .featured-sale .container { flex-direction: column; }
    .main-nav { display: none; flex-direction: column; align-items: flex-start; width: 100%; padding: 12px 0; }
    .main-nav.open { display: flex; }
    .nav-toggle { display: block; }
    .header-inner { flex-wrap: wrap; }
    .top-bar .container { flex-direction: column; gap: 6px; text-align: center; }
    .rule-card { flex-direction: column; gap: 12px; }
    .rule-num { font-size: 2rem; }
}

@media (max-width: 480px) {
    .photo-gallery { grid-template-columns: repeat(2, 1fr); }
    .about-stats { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { text-align: center; }
}
