/*
Theme Name: Reach Properties
Theme URI: https://reachproperties.com
Description: Clean, minimal landing page theme for real estate business
Version: 1.0
Author: Reach Properties
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

/* =========================================================
   REACH PROPERTIES - MAIN STYLESHEET
   Charleston, SC Real Estate Website
   ========================================================= */

/* ── COLOR VARIABLES ── */
:root {
  --navy: #1e3a5f;
  --navy-light: #2a4d7a;
  --sage: #7a9e7e;
  --sage-light: #a8c5ab;
  --cream: #f8f4ed;
  --warm-white: #fdfaf5;
  --sand: #e8dcc8;
  --terracotta: #c4956a;
  --text-dark: #1a2332;
  --text-mid: #4a5568;
  --text-light: #718096;
  --green-brand: #4a8c3f;
}

/* ── RESET & BASE ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(253, 250, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(30, 58, 95, 0.08);
  transition: all 0.3s ease;
}

.nav-logo img {
  height: 75px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--terracotta);
  outline: none;
}

.nav-cta {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--warm-white);
  background: var(--navy);
  padding: 10px 24px;
  border-radius: 2px;
  border: 1px solid var(--navy);
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
}

.nav-cta:hover,
.nav-cta:focus {
  background: var(--terracotta);
  border-color: var(--terracotta);
  outline: none;
}

/* ── HERO SECTION ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 95, 0.95) 0%,
    rgba(30, 58, 95, 0.85) 40%,
    rgba(30, 58, 95, 0.65) 100%
  );
  z-index: 1;
}

.hero-img {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1564013799919-ab600027ffc6?w=1800&q=80');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}

.hero-texture {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse at 70% 50%, rgba(196, 149, 106, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-logo {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 300px;
  opacity: 0.98;
}

.hero-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 780px;
  padding: 0 48px;
  margin-top: 80px;
  animation: heroFade 1.2s ease forwards;
  opacity: 0;
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--sage-light);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--sand);
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin-bottom: 48px;
}

/* ── CTA CARDS ── */
.cta-strip {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  background: rgba(253, 250, 245, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  padding: 24px 28px;
  min-width: 180px;
  text-decoration: none;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--terracotta);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}

.cta-card:hover,
.cta-card:focus {
  background: rgba(253, 250, 245, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  outline: none;
}

.cta-card:hover::before,
.cta-card:focus::before {
  transform: scaleX(1);
}

.cta-icon {
  font-size: 22px;
  margin-bottom: 4px;
}

.cta-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.cta-hint {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* ── SCROLL INDICATOR ── */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s infinite ease-in-out;
}

.scroll-hint span {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.scroll-hint svg {
  color: rgba(255, 255, 255, 0.4);
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* ── SECTION BASE ── */
section {
  padding: 100px 48px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--terracotta);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--navy);
}

.section-title em {
  font-style: italic;
  color: var(--terracotta);
}

/* ── HOW CAN WE HELP SECTION ── */
.help-section {
  background: var(--cream);
  text-align: center;
}

.help-section .inner {
  max-width: 1100px;
  margin: 0 auto;
}

.help-section .section-eyebrow {
  margin: 0 auto 16px;
}

.help-subtitle {
  font-size: 18px;
  color: var(--text-mid);
  font-weight: 300;
  max-width: 520px;
  margin: 16px auto 64px;
  line-height: 1.7;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 2px solid var(--sand);
  overflow: hidden;
  border-radius: 4px;
}

.help-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 52px 36px;
  background: var(--warm-white);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.help-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.help-card:hover::after,
.help-card:focus::after {
  opacity: 1;
}

.help-card > * {
  position: relative;
  z-index: 1;
}

.help-card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sand);
  border-radius: 50%;
  margin-bottom: 24px;
  transition: background 0.3s ease;
  font-size: 26px;
}

.help-card:hover .help-card-icon,
.help-card:focus .help-card-icon {
  background: rgba(255, 255, 255, 0.12);
}

.help-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.help-card:hover h3,
.help-card:focus h3 {
  color: #fff;
}

.help-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
  transition: color 0.3s ease;
}

.help-card:hover p,
.help-card:focus p {
  color: rgba(255, 255, 255, 0.7);
}

.help-card-arrow {
  margin-top: 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease, gap 0.3s ease;
}

.help-card:hover .help-card-arrow,
.help-card:focus .help-card-arrow {
  color: var(--sand);
  gap: 14px;
}

/* ── LIFESTYLE SECTION ── */
.lifestyle-section {
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  min-height: 560px;
}

.lifestyle-img {
  overflow: hidden;
}

.lifestyle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.95);
  transition: transform 0.8s ease;
  display: block;
}

.lifestyle-img:hover img,
.lifestyle-img:focus img {
  transform: scale(1.03);
}

.lifestyle-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
  position: relative;
}

.lifestyle-copy::before {
  content: '"';
  position: absolute;
  top: 40px;
  left: 64px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 180px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.lifestyle-copy .section-eyebrow {
  color: var(--sage-light);
}

.lifestyle-copy .section-eyebrow::before {
  background: var(--sage-light);
}

.lifestyle-copy .section-title {
  color: #fff;
}

.lifestyle-copy .section-title em {
  color: var(--sand);
}

.lifestyle-copy p {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 300;
  margin-top: 24px;
  max-width: 440px;
}

/* ── AGENTS SECTION ── */
.agents-section {
  background: var(--warm-white);
  text-align: center;
}

.agents-section .inner {
  max-width: 1000px;
  margin: 0 auto;
}

.agents-eyebrow {
  margin: 0 auto 16px;
}

.agents-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 64px;
  text-align: left;
}

.agent-card {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 40px;
  border: 1px solid var(--sand);
  border-radius: 4px;
  background: var(--cream);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.agent-card:hover,
.agent-card:focus {
  box-shadow: 0 16px 48px rgba(30, 58, 95, 0.1);
  transform: translateY(-4px);
  outline: none;
}

.agent-photo {
  width: 100px;
  height: 120px;
  flex-shrink: 0;
  border-radius: 3px;
  overflow: hidden;
  border: 3px solid var(--warm-white);
  box-shadow: 0 4px 16px rgba(30, 58, 95, 0.12);
}

.agent-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.agent-info {
  flex: 1;
}

.agent-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 2px;
}

.agent-title {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 20px;
}

.agent-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.agent-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}

.agent-contact a:hover,
.agent-contact a:focus {
  color: var(--navy);
  outline: none;
}

.agent-contact span.ico {
  font-size: 15px;
  width: 20px;
  text-align: center;
}

.agent-bio {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--sand);
}

.agent-bio p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
  margin: 0;
}

/* ── FAMILY BANNER SECTION ── */
.family-banner-container {
  position: relative;
  height: 520px;
  overflow: hidden;
  background: var(--navy);
}

.family-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.family-banner-container:hover .family-banner-img,
.family-banner-container:focus-within .family-banner-img {
  transform: scale(1.02);
}

.family-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(30, 58, 95, 0.75) 0%, rgba(30, 58, 95, 0.3) 60%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 0 72px;
  z-index: 1;
}

.family-banner-text {
  position: relative;
  z-index: 1;
}

.family-banner-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 14px;
  font-weight: 600;
}

.family-banner-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  max-width: 480px;
}

.family-banner-heading em {
  font-style: italic;
  color: var(--sand);
}

.family-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 4px;
  transition: border-color 0.2s;
}

.family-banner-cta:hover,
.family-banner-cta:focus {
  border-color: rgba(255, 255, 255, 0.7);
  outline: none;
}

/* ── RESOURCES/PARTNERS SECTION ── */
.partner-section {
  background: var(--cream);
  padding: 80px 48px;
}

.partner-section .inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.partner-section .section-eyebrow {
  margin: 0 auto 16px;
}

.partner-section .section-title {
  margin-bottom: 12px;
}

.partner-subtitle {
  font-size: 16px;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 52px;
}

.partner-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 100%;
}

.partner-card {
  padding: 28px 24px;
  background: var(--warm-white);
  border: 1px solid var(--sand);
  border-radius: 4px;
  text-align: left;
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.partner-card:hover,
.partner-card:focus {
  box-shadow: 0 12px 40px rgba(30, 58, 95, 0.08);
  outline: none;
}

.partner-logo {
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo img {
  max-height: 80px;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.partner-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-brand);
  background: rgba(74, 140, 63, 0.1);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.partner-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}

.partner-role {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 12px;
}

.partner-details {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  font-weight: 400;
}

.partner-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 24px;
}

.partner-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.partner-contact a {
  font-size: 12px;
  color: var(--terracotta);
  text-decoration: none;
  transition: color 0.2s;
}

.partner-contact a:hover,
.partner-contact a:focus {
  color: var(--navy);
  outline: none;
}

.partner-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  text-decoration: none;
  transition: gap 0.2s;
}

.partner-cta:hover,
.partner-cta:focus {
  gap: 14px;
  outline: none;
}

/* ── FOOTER ── */
footer {
  background: rgba(122, 158, 126, 0.25);
  padding: 60px 48px 40px;
  color: var(--text-dark);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(30, 58, 95, 0.1);
}

/* Footer Logos Section */
.footer-logo-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer-reach-logo {
  height: 100px;
  display: block;
}

.footer-bhg-palmetto-logo {
  width: 160px;
  height: auto;
  display: block;
  margin-top: -25px;
  filter: brightness(0.35) saturate(0.8) hue-rotate(200deg);
}

/* Footer Certifications Section */
.footer-certifications {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.footer-certifications img {
  width: 75px;
  height: auto;
  display: block;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  align-items: flex-end;
}

.footer-links a {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--navy);
  outline: none;
}

.footer-bottom {
  max-width: 1100px;
  margin: 28px auto 0;
  padding-top: 28px;
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
}

.footer-bottom p {
  margin: 0;
}

/* ── DECORATIVE ELEMENTS ── */
.palmetto-divider {
  text-align: center;
  padding: 20px 0;
  font-size: 22px;
  opacity: 0.25;
  color: var(--navy);
  letter-spacing: 16px;
}

/* =========================================================
   RESPONSIVE: TABLET (max-width: 900px)
   ========================================================= */
@media (max-width: 900px) {
  nav {
    padding: 14px 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    font-size: 11px;
    padding: 9px 18px;
  }

  section {
    padding: 64px 20px;
  }

  /* Hero */
  .hero-logo {
    display: none;
  }

  .hero-content {
    padding: 0 20px;
    margin-top: 60px;
  }

  .hero h1 {
    font-size: clamp(40px, 10vw, 64px);
  }

  .hero-sub {
    font-size: 15px;
  }

  .cta-strip {
    flex-direction: column;
    gap: 12px;
  }

  .cta-card {
    min-width: unset;
    width: 100%;
    flex-direction: row;
    align-items: center;
    padding: 18px 20px;
    gap: 14px;
  }

  .cta-icon {
    margin-bottom: 0;
    font-size: 20px;
  }

  /* Help grid */
  .help-grid {
    grid-template-columns: 1fr;
  }

  .help-card {
    padding: 36px 28px;
  }

  /* Lifestyle split */
  .lifestyle-section {
    grid-template-columns: 1fr;
  }

  .lifestyle-img {
    height: 280px;
  }

  .lifestyle-copy {
    padding: 52px 28px;
  }

  .lifestyle-copy::before {
    font-size: 120px;
    top: 20px;
    left: 20px;
  }

  /* Agents */
  .agents-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .agent-card {
    padding: 28px 24px;
  }

  /* Partner */
  .partner-section {
    padding: 64px 20px;
  }

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

  /* Footer */
  footer {
    padding: 48px 20px 28px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
  }

  .footer-logo-section {
    align-items: center;
  }

  .footer-links {
    gap: 12px;
    align-items: center;
  }

  .footer-certifications {
    gap: 16px;
  }

  .footer-bottom {
    padding-top: 20px;
  }
}

/* =========================================================
   RESPONSIVE: MOBILE (max-width: 480px)
   ========================================================= */
@media (max-width: 480px) {
  nav {
    padding: 20px 16px;
    justify-content: center;
  }

  .nav-logo {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .nav-logo img {
    height: 95px;
  }

  .nav-cta {
    display: none;
  }

  section {
    padding: 56px 16px;
  }

  /* Hero */
  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding: 0 16px;
    margin-top: 64px;
  }

  .hero h1 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .hero-sub {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .hero-eyebrow {
    font-size: 10px;
  }

  /* CTA cards */
  .cta-strip {
    gap: 10px;
  }

  .cta-card {
    padding: 16px 18px;
    gap: 12px;
    border-radius: 4px;
  }

  .cta-icon {
    font-size: 18px;
  }

  .cta-label {
    font-size: 12px;
  }

  .cta-hint {
    font-size: 10px;
  }

  /* Help section */
  .help-subtitle {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .help-card {
    padding: 32px 20px;
  }

  .help-card h3 {
    font-size: 22px;
  }

  /* Palmetto divider */
  .palmetto-divider {
    letter-spacing: 10px;
    padding: 12px 0;
  }

  /* Lifestyle */
  .lifestyle-img {
    height: 240px;
  }

  .lifestyle-copy {
    padding: 44px 20px;
  }

  .lifestyle-copy p {
    font-size: 15px;
  }

  /* Agents */
  .agent-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
  }

  .agent-photo {
    width: 110px;
    height: 130px;
  }

  .agent-contact a {
    justify-content: center;
  }

  /* Family banner */
  .family-banner-container {
    height: 360px;
  }

  .family-banner-overlay {
    padding: 0 20px;
  }

  .family-banner-text {
    padding: 0;
  }

  /* Section titles */
  .section-title {
    font-size: clamp(30px, 9vw, 42px);
  }

  /* Partner */
  .partner-cards {
    grid-template-columns: 1fr;
  }

  .partner-card {
    padding: 32px 24px;
  }

  .partner-name {
    font-size: 22px;
  }

  /* Footer */
  footer {
    padding: 40px 16px 24px;
  }

  .footer-links {
    flex-direction: column;
    gap: 14px;
  }

  .footer-bottom {
    font-size: 11px;
  }
}

/* =========================================================
   ACCESSIBILITY & PRINT
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  nav,
  footer {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  a {
    text-decoration: underline;
  }
}
