/* ============================================
   HELPYOUDOWNSIZE.COM - Main Stylesheet
   Pendergrass Realty / Kim Pendergrass
   Navy + Warm Gold + White | Senior-Friendly
   ============================================ */

/* --- CSS Variables --- */
:root {
  --navy: #1B3A5C;
  --navy-dark: #0F2440;
  --navy-light: #2A5280;
  --gold: #D4A843;
  --gold-light: #E8C97A;
  --gold-dark: #B8922F;
  --gold-muted: #F5ECD5;
  --white: #FFFFFF;
  --off-white: #FAFAF7;
  --cream: #F7F4ED;
  --gray-100: #F5F5F5;
  --gray-200: #E8E8E8;
  --gray-300: #D1D1D1;
  --gray-500: #888888;
  --gray-700: #4A4A4A;
  --gray-900: #1A1A1A;
  --success: #2E7D32;
  --error: #C62828;
  --shadow-sm: 0 1px 3px rgba(27,58,92,0.08);
  --shadow-md: 0 4px 16px rgba(27,58,92,0.10);
  --shadow-lg: 0 8px 32px rgba(27,58,92,0.14);
  --shadow-xl: 0 16px 48px rgba(27,58,92,0.18);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-size-base: 18px;
  --line-height-base: 1.7;
}

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

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 0.5em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 0.5em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); margin-bottom: 0.4em; }
h4 { font-size: 1.1rem; margin-bottom: 0.3em; }
p { margin-bottom: 1em; }
.text-gold { color: var(--gold-dark); }
.text-navy { color: var(--navy); }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 80px 0;
}
.section-alt {
  background: var(--cream);
}
.section-navy {
  background: var(--navy);
  color: var(--white);
}
.section-navy h2, .section-navy h3, .section-navy h4 { color: var(--gold-light); }
.section-navy p { color: rgba(255,255,255,0.9); }
.section-navy a { color: var(--gold-light); }
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.section-header .eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--gray-500);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy-dark);
}
.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 12px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  font-size: 1.4rem;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
}
.logo-text span {
  color: var(--gold-dark);
}

/* Desktop Nav */
.main-nav {
  display: none;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.main-nav a {
  display: block;
  padding: 6px 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--navy);
  background: var(--gold-muted);
}
.nav-cta {
  display: none;
  margin-left: 8px;
  flex-shrink: 0;
}
.nav-cta .btn {
  padding: 9px 18px;
  font-size: 0.82rem;
  white-space: nowrap;
}

/* Mobile Menu */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFFFFF;
  padding: 24px 24px 100px 24px;
  overflow-y: auto;
  z-index: 9998;
}
.mobile-menu ul { list-style: none; }
.mobile-menu li { border-bottom: 1px solid #E8E8E8; }
.mobile-menu a {
  display: block;
  padding: 16px 12px;
  font-size: 1.15rem;
  font-weight: 500;
  color: #4A4A4A;
}
.mobile-menu a:hover, .mobile-menu a.active { color: #1B3A5C; background: #F5ECD5; border-radius: 6px; }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 24px; font-size: 1.1rem; }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(212,168,67,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--off-white), transparent);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { color: var(--white); }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,168,67,0.15);
  border: 1px solid rgba(212,168,67,0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
  position: relative;
}
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.8;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-image {
  display: none;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
.hero-trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

/* --- Cards --- */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--gold-light);
}
.card-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-muted);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
  color: var(--gold-dark);
}
.card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.card p { font-size: 0.95rem; color: var(--gray-500); margin-bottom: 16px; }
.card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card-link:hover { color: var(--gold-dark); gap: 10px; }

/* --- Feature Blocks --- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--gold-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.feature-content h3 { margin-bottom: 16px; }
.feature-content p { margin-bottom: 16px; }

/* --- Stats Bar --- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 48px 0;
}
.stat-item {
  text-align: center;
  padding: 24px 16px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

/* --- Testimonials --- */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  position: relative;
}
.testimonial::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold-light);
  position: absolute;
  top: 16px;
  left: 24px;
  line-height: 1;
}
.testimonial p {
  font-size: 1rem;
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 16px;
  padding-top: 24px;
}
.testimonial-author {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
}
.stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

/* --- About / Kim Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.about-image-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  background: var(--gold-muted);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 0.95rem;
}
.form-group label .required {
  color: var(--error);
}
.form-control {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--gray-900);
  transition: border-color var(--transition);
}
.form-control:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(212,168,67,0.15);
}
.form-control::placeholder { color: var(--gray-300); }
textarea.form-control { min-height: 140px; resize: vertical; }
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A4A4A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.form-message {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-weight: 500;
  display: none;
}
.form-message.success {
  background: #E8F5E9;
  color: var(--success);
  border: 1px solid #C8E6C9;
  display: block;
}
.form-message.error {
  background: #FFEBEE;
  color: var(--error);
  border: 1px solid #FFCDD2;
  display: block;
}
.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
}
.contact-info-card h3 { color: var(--gold-light); margin-bottom: 24px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-info-item svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-item a { color: var(--gold-light); }
.contact-info-item p { color: rgba(255,255,255,0.85); margin-bottom: 0; }
.contact-info-item strong { color: var(--white); display: block; margin-bottom: 2px; font-size: 0.95rem; }

/* --- Resource Page Content --- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 140px 0 60px;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }
.page-hero .breadcrumb {
  margin-bottom: 16px;
  font-size: 0.85rem;
}
.page-hero .breadcrumb a { color: var(--gold-light); }
.page-hero .breadcrumb span { color: rgba(255,255,255,0.5); }

.content-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}
.content-body h2 { margin-top: 48px; margin-bottom: 16px; padding-top: 32px; border-top: 1px solid var(--gray-200); }
.content-body h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.content-body h3 { margin-top: 32px; margin-bottom: 12px; color: var(--navy-light); }
.content-body p { font-size: 1.05rem; }
.content-body strong { color: var(--navy); }

.callout-box {
  background: var(--gold-muted);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 24px 28px;
  margin: 32px 0;
}
.callout-box p { margin-bottom: 0; }
.callout-box strong { color: var(--navy); }

.warning-box {
  background: #FFF8E1;
  border-left: 4px solid #F9A825;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 24px 28px;
  margin: 32px 0;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.95rem;
}
.info-table th, .info-table td {
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  text-align: left;
}
.info-table th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
}
.info-table tr:nth-child(even) { background: var(--gray-100); }
.info-table tr:hover { background: var(--gold-muted); }

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  margin: 48px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(212,168,67,0.06), transparent 60%);
}
.cta-banner h2 { color: var(--white); position: relative; z-index: 1; }
.cta-banner p { color: rgba(255,255,255,0.85); position: relative; z-index: 1; max-width: 560px; margin: 0 auto 24px; }
.cta-banner .btn { position: relative; z-index: 1; }

/* --- Footer --- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-text { color: var(--white); font-size: 1.2rem; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; max-width: 320px; }
.footer-col h4 {
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
}
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,0.4); }
.footer-legal a:hover { color: var(--gold-light); }

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

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--gold);
  border: 2px solid rgba(212,168,67,0.4);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 9997;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); box-shadow: var(--shadow-xl); }

@media (min-width: 768px) {
  .back-to-top { bottom: 32px; right: 32px; }
}

/* --- Phone Banner (sticky mobile) --- */
.phone-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gold);
  color: var(--navy-dark);
  text-align: center;
  padding: 14px 16px;
  font-weight: 700;
  font-size: 1rem;
  z-index: 999;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
}
.phone-banner a { color: var(--navy-dark); display: flex; align-items: center; justify-content: center; gap: 8px; }

/* --- Loading Spinner --- */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* --- reCAPTCHA --- */
.g-recaptcha { margin-bottom: 20px; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(4, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .phone-banner { display: none !important; }
  .feature-row { grid-template-columns: 1fr 1fr; }
  .feature-row.reverse .feature-image { order: 2; }
  .about-grid { grid-template-columns: 1fr 1.2fr; }
  .contact-grid { grid-template-columns: 1fr 360px; }
}

@media (max-width: 767px) {
  .phone-banner { display: block; }
  body { padding-bottom: 60px; }
}

@media (min-width: 1100px) {
  .main-nav { display: flex; }
  .nav-cta { display: flex; }
  .mobile-toggle { display: none; }
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
  .hero-image { display: block; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

/* --- Print --- */
@media print {
  .site-header, .site-footer, .back-to-top, .phone-banner, .mobile-menu { display: none !important; }
  body { font-size: 12pt; color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  .hero { min-height: auto; padding: 20px 0; background: #fff !important; }
  .hero h1, .hero p { color: #000 !important; }
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
