/* ── Reset & Base ────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Inter', sans-serif; color: #1A1A1A; background: #fff; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; -webkit-tap-highlight-color: transparent; }
button { -webkit-tap-highlight-color: transparent; }
ul { list-style: none; }
* { word-break: break-word; }

/* ── Variables ───────────────────────────────────────────────────────────────── */
:root {
  --orange: #FF6B00;
  --orange-hover: #FF8C33;
  --navy: #2C2C2C;
  --dark: #2C2C2C;
  --darker: #1A1A1A;
  --offwhite: #F8F7F4;
  --white: #ffffff;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
}

/* ── Layout ──────────────────────────────────────────────────────────────────── */
.container-wide { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 768px) { .container-wide { padding: 0 2rem; } }
@media (min-width: 1280px) { .container-wide { padding: 0 2.5rem; } }
.section-padding { padding: 4rem 0; }
@media (min-width: 768px) { .section-padding { padding: 6rem 0; } }
.bg-offwhite { background: var(--offwhite); }
.bg-white { background: var(--white); }
.text-center { text-align: center; }

/* ── Typography ──────────────────────────────────────────────────────────────── */
.heading-lg { font-family: 'Playfair Display', serif; font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 1rem; }
.body-text { font-family: 'Inter', sans-serif; color: var(--gray-600); line-height: 1.7; margin-bottom: 1.25rem; }
.label-orange { color: var(--orange); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; font-family: 'Inter', sans-serif; margin-bottom: 0.75rem; }
.label-muted { color: rgba(255,255,255,0.6); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; font-family: 'Inter', sans-serif; margin-bottom: 1rem; }
.eyebrow { color: var(--orange); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; font-family: 'Inter', sans-serif; margin-bottom: 1.5rem; }
.underline-orange { position: relative; display: inline-block; }
.underline-orange::after { content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 3px; background: var(--orange); }

/* ── Buttons ─────────────────────────────────────────────────────────────────── */
.btn-orange { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.875rem 2rem; background: var(--orange); color: var(--darker); font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.1em; transition: background 0.2s; border: none; cursor: pointer; }
.btn-orange:hover { background: var(--orange-hover); }
.btn-outline-white { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.875rem 2rem; border: 2px solid rgba(255,255,255,0.7); color: #fff; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.1em; transition: all 0.2s; }
.btn-outline-white:hover { background: #fff; color: var(--darker); }
.btn-dark { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.875rem 2rem; background: var(--dark); color: #fff; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.1em; transition: background 0.2s; }
.btn-dark:hover { background: var(--darker); }

/* ── Header ──────────────────────────────────────────────────────────────────── */
.sw-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: var(--dark); box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 3 rem; padding: 0 rem 0; gap: 0rem; }
.header-logo img { height: 150px; max-height: 125px; width: auto; object-fit: contain; }
.header-nav { display: none; align-items: center; gap: 0.125rem; flex: 1; justify-content: center; }
@media (min-width: 1024px) { .header-nav { display: flex; } }
.nav-link { display: flex; align-items: center; gap: 0.25rem; padding: 0.375rem 0.625rem; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; font-family: 'Inter', sans-serif; color: rgba(255,255,255,0.8); transition: color 0.15s; white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: var(--orange); }
.nav-dropdown { position: relative; }
.dropdown-arrow { font-size: 0.625rem; opacity: 0.6; }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; min-width: 200px; background: #fff; border-top: 2px solid var(--orange); box-shadow: 0 8px 24px rgba(0,0,0,0.15); z-index: 200; padding: 0.5rem 0; }
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 0.625rem 1rem; font-size: 0.875rem; color: var(--darker); font-family: 'Inter', sans-serif; transition: background 0.15s; }
.dropdown-menu a:hover { background: var(--offwhite); }
.header-cta { display: none; align-items: center; gap: 1rem; flex-shrink: 0; }
@media (min-width: 1024px) { .header-cta { display: flex; } }
.header-phone { display: flex; align-items: center; gap: 0.375rem; font-size: 0.75rem; font-weight: 600; font-family: 'Inter', sans-serif; color: rgba(255,255,255,0.8); transition: color 0.15s; }
.header-phone:hover { color: var(--orange); }
.header-cta .btn-orange { padding: 0.5rem 1rem; font-size: 0.7rem; }
.mobile-toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.75rem; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
@media (min-width: 1024px) { .mobile-toggle { display: none; } }
.mobile-toggle span { display: block; width: 22px; height: 2px; background: #fff; transition: all 0.3s; }
.mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; background: var(--dark); border-top: 1px solid rgba(255,255,255,0.1); }
.mobile-menu.open { display: block; }
.mobile-menu .container-wide { padding-top: 1rem; padding-bottom: 1.5rem; }
.mobile-menu a { display: block; padding: 0.75rem 0; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.8); border-bottom: 1px solid rgba(255,255,255,0.1); font-family: 'Inter', sans-serif; }
.mobile-menu a:hover { color: var(--orange); }
.mobile-phone { color: var(--orange) !important; }

/* ── Hero ────────────────────────────────────────────────────────────────────── */
.hero-section { position: relative; min-height: 100vh; min-height: -webkit-fill-available; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: url('https://images.pexels.com/photos/8082322/pexels-photo-8082322.jpeg?auto=compress&cs=tinysrgb&w=2560&q=95'); background-size: cover; background-position: center; }
.hero-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(10,22,40,0.65); }
.hero-accent-bar { position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--orange); }
.hero-content { position: relative; z-index: 2; padding-top: 8rem; padding-bottom: 5rem; text-align: center; }
.hero-headline { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 7vw, 5rem); font-weight: 700; color: #fff; line-height: 1.1; max-width: 900px; margin: 0 auto 1.5rem; }
.hero-sub { font-size: clamp(1rem, 2.5vw, 1.375rem); color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 2.5rem; font-family: 'Inter', sans-serif; font-weight: 300; }
.hero-buttons { display: flex; flex-direction: column; gap: 1rem; justify-content: center; align-items: center; margin-bottom: 3rem; }
@media (min-width: 640px) { .hero-buttons { flex-direction: row; } }
.hero-contact-strip { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: rgba(255,255,255,0.6); font-family: 'Inter', sans-serif; }
@media (min-width: 640px) { .hero-contact-strip { flex-direction: row; justify-content: center; } }
.hero-contact-strip a { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.6); }
.hero-contact-strip a:hover { color: rgba(255,255,255,0.9); }
.hero-contact-strip .sep { opacity: 0.3; display: none; }
@media (min-width: 640px) { .hero-contact-strip .sep { display: inline; } }

/* ── Stats Bar ───────────────────────────────────────────────────────────────── */
.stats-bar { background: #fff; border-top: 1px solid #F3F4F6; border-bottom: 1px solid #F3F4F6; padding: 2.5rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item { text-align: center; padding: 1.5rem; border-right: 1px solid #F3F4F6; }
.stat-item:last-child { border-right: none; }
@media (max-width: 767px) { .stat-item:nth-child(2n) { border-right: none; } }
.stat-icon { font-size: 1.25rem; margin-bottom: 0.5rem; }
.stat-value { font-family: 'Playfair Display', serif; font-size: clamp(1.25rem, 3vw, 1.875rem); font-weight: 700; color: var(--darker); margin-bottom: 0.25rem; }
.stat-label { font-size: 0.75rem; color: var(--gray-500); font-family: 'Inter', sans-serif; letter-spacing: 0.05em; }

/* ── About Section ───────────────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-photo-wrap { position: relative; }
.about-photo { overflow: hidden; background: var(--navy); min-height: 320px; aspect-ratio: 4/5; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.credential-card { position: absolute; bottom: -1.5rem; right: 0; background: #fff; box-shadow: 0 10px 40px rgba(0,0,0,0.12); padding: 1.5rem; max-width: 240px; }
@media (min-width: 768px) { .credential-card { right: -1.5rem; } }
.credential-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.credential-row:last-child { margin-bottom: 0; }
.cred-icon { font-size: 2rem; }
.cred-title { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--darker); font-size: 0.875rem; margin-bottom: 0.125rem; }
.cred-sub { font-size: 0.75rem; color: var(--gray-500); font-family: 'Inter', sans-serif; }
.about-content { padding-bottom: 1.5rem; }
.badge-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.badge { display: flex; align-items: center; gap: 0.5rem; background: #fff; border: 1px solid #E5E7EB; padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 600; color: var(--darker); font-family: 'Inter', sans-serif; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }

/* ── Section Header Row ──────────────────────────────────────────────────────── */
.section-header-row { display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; margin-bottom: 3rem; gap: 1rem; }
@media (min-width: 768px) { .section-header-row { flex-direction: row; align-items: flex-end; } }
.view-all-link { color: var(--darker); font-weight: 600; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.08em; font-family: 'Inter', sans-serif; white-space: nowrap; transition: color 0.15s; }
.view-all-link:hover { color: var(--orange); }

/* ── Neighborhood Grid ───────────────────────────────────────────────────────── */
.neighborhood-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .neighborhood-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .neighborhood-grid { grid-template-columns: repeat(3, 1fr); } }
.neighborhood-card { position: relative; display: block; overflow: hidden; min-height: 240px; aspect-ratio: 4/3; }
.neighborhood-img { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-size: cover; background-position: center; transition: transform 0.5s; }
.neighborhood-card:hover .neighborhood-img { transform: scale(1.05); }
.neighborhood-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2)); transition: opacity 0.3s; }
.neighborhood-badge { position: absolute; top: 1rem; right: 1rem; background: var(--orange); color: var(--darker); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 0.25rem 0.625rem; font-family: 'Inter', sans-serif; max-width: 180px; text-align: right; }
.neighborhood-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; }
.neighborhood-content h3 { font-family: 'Playfair Display', serif; font-weight: 700; color: #fff; font-size: 1.25rem; margin-bottom: 0.25rem; transition: color 0.2s; }
.neighborhood-card:hover .neighborhood-content h3 { color: var(--orange); }
.neighborhood-content p { color: rgba(255,255,255,0.75); font-size: 0.875rem; font-family: 'Inter', sans-serif; margin-bottom: 0.75rem; line-height: 1.4; }
.view-link { color: var(--orange); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; font-family: 'Inter', sans-serif; }

/* ── Testimonials ────────────────────────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card { background: #fff; padding: 2rem; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.testimonial-stars { color: var(--orange); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-quote { font-size: 0.9375rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1.25rem; font-family: 'Inter', sans-serif; font-style: italic; }
.testimonial-author { border-top: 1px solid #F3F4F6; padding-top: 1rem; }
.testimonial-author strong { display: block; font-family: 'Playfair Display', serif; font-size: 0.9375rem; color: var(--darker); }
.testimonial-author span { font-size: 0.8125rem; color: var(--gray-400); font-family: 'Inter', sans-serif; }

/* ── Home Value CTA ──────────────────────────────────────────────────────────── */
.home-value-cta { position: relative; padding: 5rem 0; overflow: hidden; }
.hv-bg { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: var(--navy); }
.hv-bg::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1920&q=80'); background-size: cover; background-position: center; opacity: 0.1; }
.hv-badges { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.hv-badge { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.7); font-size: 0.875rem; font-family: 'Inter', sans-serif; }

/* ── Blog Grid ───────────────────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card { display: block; background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: box-shadow 0.2s; overflow: hidden; }
.blog-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-img-placeholder { height: 200px; background: #E5E7EB; }
.blog-card-body { padding: 1.5rem; }
.blog-card-category { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--orange); font-family: 'Inter', sans-serif; margin-bottom: 0.5rem; }
.blog-card-title { font-family: 'Playfair Display', serif; font-size: 1.125rem; font-weight: 700; color: var(--darker); margin-bottom: 0.75rem; line-height: 1.3; }
.blog-card-excerpt { font-size: 0.875rem; color: var(--gray-500); font-family: 'Inter', sans-serif; line-height: 1.6; margin-bottom: 1rem; }
.blog-card-read { font-size: 0.8125rem; font-weight: 600; color: var(--orange); font-family: 'Inter', sans-serif; }

/* ── Blog Content (single post) ──────────────────────────────────────────────── */
.blog-content { font-family: 'Inter', sans-serif; color: var(--gray-600); line-height: 1.8; font-size: 1.0625rem; }
.blog-content h2 { font-family: 'Playfair Display', serif; font-size: 1.625rem; font-weight: 700; color: var(--navy); margin: 2.5rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid #F3F4F6; }
.blog-content h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--navy); margin: 2rem 0 0.75rem; }
.blog-content p { margin-bottom: 1.25rem; }
.blog-content ul { list-style: disc; margin: 1rem 0 1.5rem 1.5rem; }
.blog-content ol { list-style: decimal; margin: 1rem 0 1.5rem 1.5rem; }
.blog-content li { margin-bottom: 0.5rem; padding-left: 0.25rem; }
.blog-content strong { font-weight: 600; color: var(--darker); }
.blog-content em { font-style: italic; }
.blog-content blockquote { border-left: 4px solid var(--orange); padding: 1rem 1.5rem; background: var(--offwhite); margin: 2rem 0; font-style: italic; }
.blog-content a { color: var(--orange); text-decoration: underline; }
.blog-content img { max-width: 100%; height: auto; margin: 2rem 0; }

/* ── Final CTA ───────────────────────────────────────────────────────────────── */
.final-cta { background: var(--dark); }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Sold Grid ───────────────────────────────────────────────────────────────── */
.sold-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin-bottom: 2rem; }
.sold-card { background: #fff; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.sold-card-img { height: 200px; background-size: cover; background-position: center; position: relative; }
.sold-badge { position: absolute; top: 0.75rem; left: 0.75rem; background: var(--orange); color: var(--darker); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em; padding: 0.25rem 0.625rem; font-family: 'Inter', sans-serif; }
.sold-card-body { padding: 1.25rem; }
.sold-address { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--darker); font-size: 1rem; margin-bottom: 0.125rem; }
.sold-city { font-size: 0.8125rem; color: var(--gray-500); font-family: 'Inter', sans-serif; margin-bottom: 0.5rem; }
.sold-price { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--orange); font-size: 1.25rem; margin-bottom: 0.5rem; }
.sold-stats { display: flex; gap: 0.75rem; font-size: 0.8125rem; color: var(--gray-500); font-family: 'Inter', sans-serif; margin-bottom: 0.375rem; }
.sold-date { font-size: 0.75rem; color: var(--gray-400); font-family: 'Inter', sans-serif; }

/* ── Footer ──────────────────────────────────────────────────────────────────── */
.sw-footer { background: var(--navy); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; padding: 4rem 0 5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-logo-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.footer-headshot { width: 3.5rem; height: 3.5rem; border-radius: 50%; overflow: hidden; border: 2px solid var(--orange); flex-shrink: 0; }
.footer-headshot img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.footer-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.25rem; }
.footer-brokerage { color: var(--orange); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; font-family: 'Inter', sans-serif; margin-top: 0.25rem; }
.footer-bio { color: rgba(255,255,255,0.7); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1.5rem; max-width: 320px; font-family: 'Inter', sans-serif; }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.footer-contact-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: rgba(255,255,255,0.8); font-family: 'Inter', sans-serif; transition: color 0.15s; }
.footer-contact-item:hover { color: #fff; }
.footer-social { display: flex; gap: 0.75rem; }
.social-icon { width: 2.5rem; height: 2.5rem; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.7); transition: all 0.2s; }
.social-icon:hover { border-color: var(--orange); color: var(--orange); }
.footer-col h4, .footer-col-title { color: var(--orange); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.25rem; font-family: 'Inter', sans-serif; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a { font-size: 0.875rem; color: rgba(255,255,255,0.7); font-family: 'Inter', sans-serif; transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom-inner { padding: 1.5rem 0; padding-bottom: calc(1.5rem + env(safe-area-inset-bottom)); display: flex; flex-direction: column; align-items: center; gap: 1rem; }
@media (min-width: 768px) { .footer-bottom-inner { flex-direction: row; justify-content: space-between; } }
.footer-bottom p, .footer-bottom-links { font-size: 0.75rem; color: rgba(255,255,255,0.5); font-family: 'Inter', sans-serif; }
.footer-bottom-links { display: flex; align-items: center; gap: 1rem; }
.footer-bottom-links .sep { color: rgba(255,255,255,0.2); }
.footer-bottom-links a { color: rgba(255,255,255,0.5); transition: color 0.15s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* ── Contact / About grids ───────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.about-bio-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .about-bio-grid { grid-template-columns: 2fr 1fr; } }
.about-contact-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .about-contact-grid { grid-template-columns: 1fr 1fr; align-items: start; } }

/* ── WPForms overrides ───────────────────────────────────────────────────────── */
.wpforms-field input,
.wpforms-field textarea,
.wpforms-field select {
  border: 1px solid #D1D5DB !important;
  border-radius: 0 !important;
  padding: 0.75rem 1rem !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 1rem !important;
  background: #fff !important;
  transition: border-color 0.2s !important;
  width: 100% !important;
  -webkit-appearance: none;
  appearance: none;
}
.wpforms-field input:focus,
.wpforms-field textarea:focus {
  border-color: var(--orange) !important;
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(255,107,0,0.1) !important;
}
.wpforms-submit {
  background: var(--orange) !important;
  color: var(--darker) !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.875rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  padding: 0.875rem 2rem !important;
  border: none !important;
  cursor: pointer !important;
  border-radius: 0 !important;
  transition: background 0.2s !important;
}
.wpforms-submit:hover { background: var(--orange-hover) !important; }
.wpforms-field label { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray-500); margin-bottom: 0.375rem; display: block; }

/* ── Utility ─────────────────────────────────────────────────────────────────── */
#main-content { padding-top: 0; }
.mb-12 { margin-bottom: 3rem; }