/* ============================================================
   4You Real Estate — Master Stylesheet
   Zero external dependencies. System fonts only.
   ============================================================ */

/* --- Custom Properties --- */
:root {
  --color-navy: #0a1628;
  --color-navy-light: #122240;
  --color-navy-mid: #1a2d4a;
  --color-gold: #c9a84c;
  --color-gold-light: #d4b86a;
  --color-gold-dark: #b08f3a;
  --color-cream: #faf8f4;
  --color-warm-gray: #f2efe9;
  --color-text: #2c2c2c;
  --color-text-light: #6b6b6b;
  --color-white: #ffffff;

  --font-heading: 'Georgia', 'Times New Roman', 'Palatino Linotype', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

  --max-width: 1200px;
  --section-padding: 100px 0;
  --transition: 0.3s ease;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-card-hover: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 4px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* --- Skip Nav --- */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--color-gold);
  color: var(--color-navy);
  padding: 12px 24px;
  z-index: 10000;
  font-weight: 600;
  border-radius: var(--radius);
}
.skip-nav:focus { top: 16px; }

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

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
  font-weight: 600;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-navy);
  margin-bottom: 20px;
  line-height: 1.25;
  font-weight: 400;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 640px;
  line-height: 1.7;
}

/* Scroll animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: var(--color-navy);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 5px;
  color: var(--color-gold);
  text-transform: uppercase;
  white-space: nowrap;
}
.logo strong { font-weight: 700; }

/* Desktop Nav */
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-white);
  opacity: 0.85;
  transition: opacity var(--transition), color var(--transition);
  font-weight: 500;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition);
}
.nav-links a:hover { opacity: 1; color: var(--color-gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  border: 1px solid var(--color-gold) !important;
  padding: 8px 20px !important;
  opacity: 1 !important;
  color: var(--color-gold) !important;
  border-radius: var(--radius);
}
.nav-cta:hover {
  background: var(--color-gold) !important;
  color: var(--color-navy) !important;
}
.nav-cta::after { display: none !important; }

/* Mobile Menu Toggle */
.menu-checkbox { display: none; }
.hamburger-icon {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
}
.hamburger-icon span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: transform var(--transition), opacity var(--transition);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(175deg, transparent 30%, rgba(10,22,40,0.5) 100%),
    linear-gradient(to bottom right, #0d1f3c 0%, #1a3355 25%, #2a4a6b 40%, #3d6380 50%, #2a4a6b 60%, #1a3355 75%, #0a1628 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(170deg, transparent 55%, rgba(10,22,40,0.9) 100%),
    radial-gradient(ellipse 120% 60% at 20% 80%, rgba(10,22,40,0.8) 0%, transparent 70%),
    radial-gradient(ellipse 100% 50% at 75% 75%, rgba(10,22,40,0.7) 0%, transparent 65%),
    radial-gradient(ellipse 80% 40% at 50% 85%, rgba(10,22,40,0.9) 0%, transparent 55%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 2px,
    rgba(255,255,255,0.01) 2px, rgba(255,255,255,0.01) 4px
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-label {
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 24px;
  font-weight: 600;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  color: var(--color-white);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-navy);
  padding: 14px 36px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid var(--color-gold);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-primary:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--color-gold);
  padding: 14px 36px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid var(--color-gold);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline:hover {
  background: var(--color-gold);
  color: var(--color-navy);
  transform: translateY(-1px);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  margin: 10px auto 0;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.5); opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 0.8; }
}

/* --- Trust Bar --- */
.trust-bar {
  background: var(--color-navy);
  padding: 48px 0;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.trust-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--color-gold);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 8px;
}

.trust-label {
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* --- Intro Section --- */
.intro-section {
  padding: var(--section-padding);
  background: var(--color-white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.intro-content p {
  margin-bottom: 24px;
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.intro-aside {
  position: relative;
  padding: 48px;
  background: var(--color-warm-gray);
  border-left: 3px solid var(--color-gold);
}

.intro-aside blockquote {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--color-navy);
  line-height: 1.6;
  margin-bottom: 16px;
}

.intro-aside cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  color: var(--color-gold-dark);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

/* --- Strategy Section --- */
.strategy-section {
  padding: var(--section-padding);
  background: var(--color-cream);
}

.strategy-header {
  text-align: center;
  margin-bottom: 64px;
}
.strategy-header .section-subtitle { margin: 0 auto; }

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

.strategy-card {
  background: var(--color-white);
  padding: 40px;
  border-left: 3px solid var(--color-gold);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
}
.strategy-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.strategy-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-gold);
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1;
}

.strategy-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-navy);
  margin-bottom: 12px;
  font-weight: 400;
}

.strategy-card p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* --- Services --- */
.services-section {
  padding: var(--section-padding);
  background: var(--color-white);
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}
.services-header .section-subtitle { margin: 0 auto; }

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

.service-card {
  background: var(--color-white);
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.service-image {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--color-navy-light), var(--color-navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.service-body {
  padding: 32px;
}

.service-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-navy);
  margin-bottom: 12px;
  font-weight: 400;
}

.service-body p {
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.link-arrow {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  transition: color var(--transition);
}
.link-arrow:hover { color: var(--color-gold); }

/* --- Specialty Services --- */
.specialty-section {
  padding: var(--section-padding);
  background: var(--color-navy);
  color: var(--color-white);
}

.specialty-header {
  text-align: center;
  margin-bottom: 64px;
}
.specialty-header .section-title { color: var(--color-white); }
.specialty-header .section-subtitle { color: rgba(255,255,255,0.6); margin: 0 auto; }

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

.specialty-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 48px;
  transition: background var(--transition), border-color var(--transition);
}
.specialty-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.4);
}

.specialty-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.2rem;
  color: var(--color-gold);
}

.specialty-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-white);
  margin-bottom: 16px;
  font-weight: 400;
}

.specialty-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}

.btn-ghost {
  display: inline-block;
  color: var(--color-gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-gold);
  padding-bottom: 2px;
  transition: color var(--transition);
}
.btn-ghost:hover { color: var(--color-gold-light); }

/* --- Communities --- */
.communities-section {
  padding: var(--section-padding);
  background: var(--color-cream);
}

.communities-header {
  text-align: center;
  margin-bottom: 64px;
}
.communities-header .section-subtitle { margin: 0 auto; }

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

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

.community-image {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-mid));
  transition: transform 0.5s ease;
}

.community-card:hover .community-image { transform: scale(1.05); }

.community-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.community-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-white);
  margin-bottom: 4px;
  font-weight: 400;
}

.community-price {
  font-size: 0.82rem;
  color: var(--color-gold);
  letter-spacing: 1px;
  font-weight: 500;
}

/* --- Testimonials --- */
.testimonials-section {
  padding: var(--section-padding);
  background: var(--color-white);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}
.testimonials-header .section-subtitle { margin: 0 auto; }

.carousel { position: relative; max-width: 780px; margin: 0 auto; }
.carousel-radio { display: none; }

.carousel-track {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  padding: 0 20px;
}

#t1:checked ~ .carousel-track .carousel-slide:nth-child(1),
#t2:checked ~ .carousel-track .carousel-slide:nth-child(2),
#t3:checked ~ .carousel-track .carousel-slide:nth-child(3) {
  opacity: 1;
  position: relative;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(10,22,40,0.15);
  cursor: pointer;
  transition: background var(--transition);
}

#t1:checked ~ .carousel-dots label[for="t1"],
#t2:checked ~ .carousel-dots label[for="t2"],
#t3:checked ~ .carousel-dots label[for="t3"] {
  background: var(--color-gold);
}

.testimonial { text-align: center; }

.testimonial-quote-mark {
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--color-gold);
  line-height: 0.5;
  margin-bottom: 24px;
  display: block;
}

.testimonial blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-style: italic;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--color-text-light);
  margin-top: 4px;
}

/* --- Team Section --- */
.team-section {
  padding: var(--section-padding);
  background: var(--color-cream);
}

.team-header {
  text-align: center;
  margin-bottom: 64px;
}
.team-header .section-subtitle { margin: 0 auto; }

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.team-member { text-align: center; }

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-mid));
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.15);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 3px solid var(--color-gold);
}

.team-member h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-navy);
  margin-bottom: 4px;
  font-weight: 400;
}

.team-title {
  font-size: 0.82rem;
  color: var(--color-gold-dark);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}

.team-member p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
  max-width: 360px;
  margin: 0 auto;
}

.team-link {
  display: inline-block;
  margin-top: 48px;
}

/* --- CTA / Contact Section --- */
.cta-section {
  padding: var(--section-padding);
  background: var(--color-white);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.cta-content .section-title { max-width: 400px; }

.cta-phone {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-gold);
  margin: 24px 0;
  display: block;
  font-weight: 400;
}

.cta-content p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 8px;
}

.cta-form {
  background: var(--color-warm-gray);
  padding: 48px;
  border-radius: var(--radius);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 6px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  background: var(--color-white);
  color: var(--color-text);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  background: var(--color-navy);
  color: var(--color-white);
  padding: 16px;
  border: none;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
}
.form-submit:hover { background: var(--color-navy-light); }

/* --- Footer --- */
.site-footer {
  background: var(--color-navy);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 0;
}

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

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-white);
  margin-bottom: 20px;
  font-weight: 400;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-col a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--color-gold); }

.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.9rem; }

.footer-contact li {
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.newsletter-form {
  display: flex;
  margin-top: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: var(--color-white);
  border-radius: var(--radius) 0 0 var(--radius);
  outline: none;
  font-size: 0.9rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form input:focus { border-color: var(--color-gold); }

.newsletter-form button {
  padding: 10px 20px;
  background: var(--color-gold);
  color: var(--color-navy);
  border: 1px solid var(--color-gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--color-gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p { font-size: 0.8rem; }

.footer-legal {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
}

.equal-housing {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

.equal-housing-icon {
  width: 24px;
  height: 24px;
  border: 1.5px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  position: relative;
}
.equal-housing-icon::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 8px solid rgba(255,255,255,0.4);
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1024px) {
  .intro-grid, .cta-grid { grid-template-columns: 1fr; gap: 48px; }
  .strategy-grid { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

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

  .hamburger-icon { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-navy);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 24px;
    transition: right var(--transition);
    box-shadow: -4px 0 20px rgba(0,0,0,0.3);
  }
  .menu-checkbox:checked ~ .nav-links { right: 0; }
  .menu-checkbox:checked ~ .hamburger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .menu-checkbox:checked ~ .hamburger-icon span:nth-child(2) { opacity: 0; }
  .menu-checkbox:checked ~ .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .trust-bar-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .strategy-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .specialty-grid { grid-template-columns: 1fr; }
  .communities-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .communities-grid { grid-template-columns: 1fr; }
  .trust-bar-grid { grid-template-columns: 1fr 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .cta-form { padding: 32px 24px; }
  .specialty-card { padding: 32px; }
  .intro-aside { padding: 32px; }
}

/* --- Print --- */
@media print {
  .site-header, .hero-scroll, .hero-ctas,
  .carousel-dots, .cta-form, .newsletter-form,
  .hamburger-icon, .menu-checkbox { display: none !important; }

  body { color: #000; background: #fff; font-size: 11pt; }
  .hero { min-height: auto; padding: 40px 0; background: #f5f5f5 !important; }
  .hero h1 { color: #000; font-size: 24pt; }
  .hero-sub { color: #333; }
  section { page-break-inside: avoid; }
  .trust-bar { background: #f0f0f0; }
  .trust-number { color: #333; }
  .trust-label { color: #666; }
  .site-footer { background: #f0f0f0; color: #333; }
  a { text-decoration: underline; }
}
