/* ════════════════════════════════════════════
   DESIGN TOKENS
════════════════════════════════════════════ */
:root {
  --b900: #0D2B6E;
  --b800: #0f3080;
  --b700: #1B4DB8;
  --b600: #2563EB;
  --b400: #60A5FA;
  --b100: #DBEAFE;
  --b50:  #EFF6FF;
  --red:  #CC0000;
  --red-h:#a80000;
  --white:#ffffff;
  --gray-800:#1e293b;
  --gray-600:#475569;
  --gray-200:#e2e8f0;
  --gray-100:#f1f5f9;
}

/* ════════════════════════════════════════════
   BASE RESET
════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ════════════════════════════════════════════
   SHARED UTILITIES
════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3rem 0; }

.btn-red {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--red); color: var(--white);
  font-family: 'Inter', sans-serif; font-size: .95rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  padding: .85rem 2rem; border-radius: 8px;
  box-shadow: 0 4px 18px rgba(204,0,0,.4);
  transition: background .2s, transform .18s, box-shadow .18s;
  cursor: pointer; border: none;
}
.btn-red:hover { background: var(--red-h); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(204,0,0,.5); }

.btn-blue {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--b600); color: var(--white);
  font-family: 'Inter', sans-serif; font-size: .95rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  padding: .85rem 2rem; border-radius: 8px;
  box-shadow: 0 4px 18px rgba(37,99,235,.35);
  transition: background .2s, transform .18s;
}
.btn-blue:hover { background: var(--b700); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--b600);
  font-family: 'Inter', sans-serif; font-size: .95rem; font-weight: 600;
  padding: .82rem 1.75rem; border-radius: 8px;
  border: 2px solid var(--b600);
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--b600); color: var(--white); }

.pill {
  display: inline-block; font-size: .7rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  border-radius: 100px; padding: .32rem 1rem;
}
.pill-blue-dark {
  color: rgba(255,255,255,.9);
  border: 1.5px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.07);
}
.pill-blue-light {
  color: var(--b700);
  background: var(--b100);
  border: 1.5px solid var(--b400);
}

.section-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--b600); margin-bottom: .75rem;
}
.section-title {
  font-family: 'Merriweather', serif; font-weight: 900;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem); line-height: 1.2;
  color: var(--b900);
}
.section-title-white {
  font-family: 'Merriweather', serif; font-weight: 900;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem); line-height: 1.2;
  color: var(--white);
}

/* Dot texture mixin applied via class */
.dot-texture {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Ccircle cx='12' cy='12' r='1.25' fill='rgba(255,255,255,0.09)'/%3E%3C/svg%3E");
  background-size: 24px 24px;
}

/* ════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 2px 20px rgba(13,43,110,.12);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo img { height: 52px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: .9rem; font-weight: 500; color: var(--gray-600);
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--b600);
  transform: scaleX(0); transition: transform .2s;
}
.nav-links a:hover { color: var(--b600); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { margin-left: 1rem; }

/* Mobile hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .5rem;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--b900); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-mobile {
  display: none; flex-direction: column;
  background: var(--white); padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--gray-200);
}
.nav-mobile a {
  display: block; padding: .75rem 0;
  font-size: 1rem; font-weight: 500; color: var(--gray-800);
  border-bottom: 1px solid var(--gray-200);
}
.nav-mobile.open { display: flex; }

/* ════════════════════════════════════════════
   BLOCK 1: HERO
════════════════════════════════════════════ */
.hero {
  position: relative; width: 100%; min-height: 580px;
  overflow: hidden; display: flex; align-items: flex-end;
}
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center 20%;
  animation: kenBurns 20s ease-in-out infinite alternate;
  transform-origin: center center; will-change: transform;
}
@keyframes kenBurns {
  0%   { transform: scale(1.00); }
  100% { transform: scale(1.09) translateX(-1.5%) translateY(-1%); }
}
.hero-grad {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,43,110,.88)  0%,
    rgba(27,77,184,.62)  38%,
    rgba(37,99,235,.35)  65%,
    rgba(37,99,235,.06)  100%
  );
  z-index: 1;
}
.hero-dots {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Ccircle cx='12' cy='12' r='1.25' fill='rgba(255,255,255,0.09)'/%3E%3C/svg%3E");
  background-size: 24px 24px;
  z-index: 2;
}
.hero-redbar {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 5px; background: var(--red); z-index: 4;
}
.hero-content {
  position: relative; z-index: 3;
  padding: 0 5% 4rem;
  max-width: 820px;
  text-align: center;
  margin: 0 auto;
  width: 100%;
}
.hero-content .pill { margin-bottom: 1.25rem; }
.hero-h1 {
  font-family: 'Merriweather', serif; font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.12;
  color: var(--white); text-shadow: 0 2px 24px rgba(13,43,110,.55);
  margin-bottom: .3rem;
}
.hero-accent {
  display: block; font-family: 'Merriweather', serif;
  font-weight: 700; font-style: italic;
  font-size: clamp(1.8rem, 4vw, 2.9rem); line-height: 1.2;
  color: var(--b400); margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.82);
  line-height: 1.7; max-width: 560px;
  margin: 0 auto 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ════════════════════════════════════════════
   BLOCK 2: INTRO / GROUP HOME IN TAMPA
════════════════════════════════════════════ */
.intro { background: var(--white); }
.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.intro-body p {
  font-size: 1rem; color: var(--gray-600);
  line-height: 1.8; margin-bottom: 1rem;
}
.intro-skills {
  list-style: none; margin: 1.25rem 0 1.75rem;
}
.intro-skills li {
  font-size: .95rem; color: var(--gray-600);
  padding: .4rem 0 .4rem 1.5rem;
  position: relative;
  border-bottom: 1px solid var(--gray-200);
}
.intro-skills li::before {
  content: '●'; position: absolute; left: 0;
  color: var(--b600); font-size: .55rem; top: .7rem;
}
.intro-img-wrap {
  position: relative; border-radius: 16px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(13,43,110,.18);
}
.intro-img-wrap img {
  width: 100%; height: 420px; object-fit: cover;
}
.intro-img-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--b900); color: var(--white);
  font-size: .8rem; font-weight: 600;
  padding: .6rem 1.2rem; border-radius: 8px;
  border-left: 4px solid var(--red);
}

/* ════════════════════════════════════════════
   BLOCK 3: PICK THE RIGHT GROUP HOME (cards)
════════════════════════════════════════════ */
.pick { background: var(--b50); }
.pick-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.pick-card {
  background: var(--white); border-radius: 14px;
  padding: 2rem 1.75rem;
  border-top: 4px solid var(--b600);
  box-shadow: 0 4px 24px rgba(13,43,110,.08);
  transition: transform .2s, box-shadow .2s;
}
.pick-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(13,43,110,.14); }
.pick-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--b100); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.pick-card-icon svg { width: 24px; height: 24px; fill: var(--b600); }
.pick-card h3 {
  font-family: 'Merriweather', serif; font-weight: 700;
  font-size: 1.15rem; color: var(--b900); margin-bottom: .75rem;
}
.pick-card p { font-size: .93rem; color: var(--gray-600); line-height: 1.7; }

/* ════════════════════════════════════════════
   BLOCK 4: MOVE IN CTA BAND
════════════════════════════════════════════ */
.movein-band {
  background: var(--b900);
  position: relative; overflow: hidden;
}
.movein-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Ccircle cx='12' cy='12' r='1.25' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E");
  background-size: 24px 24px;
}
.movein-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  padding: 3rem 1.5rem;
}
.movein-text h2 {
  font-family: 'Merriweather', serif; font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--white);
  margin-bottom: .5rem;
}
.movein-text p { font-size: 1rem; color: rgba(255,255,255,.78); max-width: 560px; }

/* ════════════════════════════════════════════
   BLOCK 5: WE ARE HIRING
════════════════════════════════════════════ */
.hiring {
  background: var(--white);
  border-left: 6px solid var(--red);
}
.hiring-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.hiring-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--red); color: var(--white);
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; padding: .35rem 1rem; border-radius: 100px;
  margin-bottom: 1.25rem;
}
.hiring h2 { color: var(--b900); margin-bottom: 1rem; }
.hiring-detail { font-size: .95rem; color: var(--gray-600); line-height: 1.8; }
.hiring-detail strong { color: var(--b900); }
.hiring-list { list-style: none; margin: 1rem 0; }
.hiring-list li {
  font-size: .93rem; color: var(--gray-600);
  padding: .35rem 0 .35rem 1.5rem; position: relative;
  border-bottom: 1px solid var(--gray-200);
}
.hiring-list li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--b600); font-weight: 700;
}
.hiring-roles { margin-top: 1.5rem; }
.hiring-role-card {
  background: var(--b50); border-radius: 10px; padding: 1.25rem 1.5rem;
  margin-bottom: 1rem; border-left: 4px solid var(--b600);
}
.hiring-role-card h4 {
  font-family: 'Merriweather', serif; font-weight: 700;
  font-size: 1rem; color: var(--b900); margin-bottom: .5rem;
}
.hiring-role-card ul { list-style: none; }
.hiring-role-card ul li {
  font-size: .88rem; color: var(--gray-600);
  padding: .25rem 0 .25rem 1.25rem; position: relative;
}
.hiring-role-card ul li::before {
  content: '→'; position: absolute; left: 0; color: var(--b600);
}

/* ════════════════════════════════════════════
   BLOCK 6: VACANCIES ALERT
════════════════════════════════════════════ */
.vacancies-alert {
  background: linear-gradient(135deg, var(--b700) 0%, var(--b600) 100%);
  position: relative; overflow: hidden;
}
.vacancies-alert::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Ccircle cx='12' cy='12' r='1.25' fill='rgba(255,255,255,0.09)'/%3E%3C/svg%3E");
  background-size: 24px 24px;
}
.vacancies-inner {
  position: relative; z-index: 1;
  text-align: center; padding: 3rem 1.5rem;
}
.vacancies-number {
  font-family: 'Merriweather', serif; font-weight: 900;
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--white); line-height: 1;
  text-shadow: 0 4px 24px rgba(13,43,110,.4);
}
.vacancies-inner h2 { color: var(--white); margin-bottom: .75rem; }
.vacancies-inner p { color: rgba(255,255,255,.82); font-size: 1rem; max-width: 500px; margin: 0 auto 1.75rem; }

/* ════════════════════════════════════════════
   BLOCK 7: ADVOCATE SECTION
════════════════════════════════════════════ */
.advocate {
  background: var(--b900);
  position: relative; overflow: hidden; text-align: center;
}
.advocate::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Ccircle cx='12' cy='12' r='1.25' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E");
  background-size: 24px 24px;
}
.advocate-inner { position: relative; z-index: 1; }
.advocate h2 { color: var(--white); margin-bottom: 1.25rem; }
.advocate p {
  font-size: 1.05rem; color: rgba(255,255,255,.8);
  line-height: 1.8; max-width: 720px; margin: 0 auto 1rem;
}
.advocate-phone {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: 1.5rem; font-weight: 700; color: var(--b400);
  margin-top: 1.5rem;
}

/* ════════════════════════════════════════════
   BLOCK 8: DAILY LIVING / ACTIVITIES GRID
════════════════════════════════════════════ */
.activities { background: var(--gray-100); }
.activities-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.activity-card {
  background: var(--white); border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(13,43,110,.08);
  transition: transform .2s, box-shadow .2s;
}
.activity-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(13,43,110,.14); }
.activity-card-img {
  width: 100%; height: 200px; object-fit: cover;
  background: var(--b100);
}
.activity-card-body { padding: 1.25rem 1.5rem; }
.activity-card-body h3 {
  font-family: 'Merriweather', serif; font-weight: 700;
  font-size: 1rem; color: var(--b900); margin-bottom: .5rem;
}
.activity-card-body p { font-size: .88rem; color: var(--gray-600); line-height: 1.65; }

/* ════════════════════════════════════════════
   BLOCK 9: BIG HEART ACRES FEATURE
════════════════════════════════════════════ */
.acres {
  background: var(--white);
  border-top: 4px solid var(--b600);
}
.acres-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.acres-img-wrap { border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(13,43,110,.15); }
.acres-img-wrap img { width: 100%; height: 380px; object-fit: cover; }
.acres-body .section-label { color: #16a34a; }
.acres-body h2 { color: var(--b900); margin-bottom: 1rem; }
.acres-emoji { font-size: 1.5rem; margin-right: .25rem; }
.acres-body p {
  font-size: .97rem; color: var(--gray-600);
  line-height: 1.8; margin-bottom: 1rem;
}

/* ════════════════════════════════════════════
   BLOCK 10: WHY CHOOSE US — STATS/REASONS
════════════════════════════════════════════ */
.why {
  background: linear-gradient(135deg, var(--b900) 0%, var(--b700) 100%);
  position: relative; overflow: hidden;
}
.why::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Ccircle cx='12' cy='12' r='1.25' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E");
  background-size: 24px 24px;
}
.why-inner { position: relative; z-index: 1; text-align: center; }
.why-inner h2 { color: var(--white); margin-bottom: 3rem; }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px; padding: 2rem 1.25rem;
  text-align: center;
  transition: background .2s;
}
.why-card:hover { background: rgba(255,255,255,.14); }
.why-stat {
  font-family: 'Merriweather', serif; font-weight: 900;
  font-size: 2.5rem; color: var(--b400); line-height: 1;
  margin-bottom: .4rem;
}
.why-card h4 {
  font-size: .9rem; font-weight: 600; color: var(--white);
  margin-bottom: .5rem;
}
.why-card p { font-size: .82rem; color: rgba(255,255,255,.7); line-height: 1.6; }

/* ════════════════════════════════════════════
   BLOCK 11: CONTACT / TOUR CTA
════════════════════════════════════════════ */
.contact-cta { background: var(--b50); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.contact-info h2 { color: var(--b900); margin-bottom: 1rem; }
.contact-info p { font-size: .97rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 1.5rem; }
.contact-locations { list-style: none; }
.contact-locations li {
  padding: .75rem 0; border-bottom: 1px solid var(--gray-200);
  display: flex; gap: .75rem;
}
.contact-loc-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--b600); margin-top: .45rem; flex-shrink: 0;
}
.contact-loc-name { font-weight: 600; color: var(--b900); font-size: .95rem; }
.contact-loc-addr { font-size: .85rem; color: var(--gray-600); }
.contact-form-wrap {
  background: var(--white); border-radius: 16px; padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(13,43,110,.12);
  border-top: 4px solid var(--b600);
}
.contact-form-wrap h3 {
  font-family: 'Merriweather', serif; font-weight: 700;
  font-size: 1.3rem; color: var(--b900); margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: .85rem; font-weight: 600;
  color: var(--b900); margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--gray-200); border-radius: 8px;
  font-family: 'Inter', sans-serif; font-size: .95rem;
  color: var(--gray-800); background: var(--white);
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--b600);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.form-group textarea { height: 110px; resize: vertical; }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer {
  background: var(--b900); color: rgba(255,255,255,.8);
  border-top: 4px solid var(--red);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; padding: 4rem 0 3rem;
}
.footer-brand img { height: 48px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.65); max-width: 280px; }
.footer-phone {
  display: flex; align-items: center; gap: .5rem;
  font-size: 1.1rem; font-weight: 700; color: var(--b400);
  margin-top: 1.25rem;
}
.footer-col h4 {
  font-family: 'Merriweather', serif; font-weight: 700;
  font-size: .95rem; color: var(--white);
  margin-bottom: 1rem; padding-bottom: .5rem;
  border-bottom: 2px solid var(--red);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a { font-size: .88rem; color: rgba(255,255,255,.65); transition: color .2s; }
.footer-col ul li a:hover { color: var(--b400); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 0; text-align: center;
  font-size: .82rem; color: rgba(255,255,255,.45);
}


/* Image fallback backgrounds — show when hotlink blocked in preview */
/* On live bigheartgrouphomes.com these images load normally */
.hero {
  background: radial-gradient(ellipse at 70% 60%, var(--b600) 0%, var(--b700) 35%, var(--b900) 75%);
}
.intro-img-wrap {
  background: linear-gradient(135deg, var(--b100) 0%, var(--b50) 100%);
  min-height: 420px;
}
.activity-card-img[src] {
  background: var(--b100);
}
.acres-img-wrap {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  min-height: 380px;
}

/* ════════════════════════════════════════════
   SCROLL ANIMATIONS
════════════════════════════════════════════ */
.fade-up {
  opacity: 0; transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
/* ───────────────────────────────────────
   SKIP LINK
─────────────────────────────────────── */
.skip-link {
  position:absolute; top:-100px; left:1rem;
  background:var(--b900); color:#fff;
  padding:.5rem 1.2rem; border-radius:4px;
  font-size:.85rem; font-weight:600;
  z-index:9999; transition:top .2s; text-decoration:none;
}
.skip-link:focus { top:1rem; }

/* ───────────────────────────────────────
   FONT FALLBACKS (prevent FOIT)
─────────────────────────────────────── */
body {
  font-family:'Inter',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
}
h1,h2,h3,h4,.section-title,.hero-h1 {
  font-family:'Merriweather',Georgia,'Times New Roman',serif;
}

/* ───────────────────────────────────────
   PREFERS-REDUCED-MOTION
─────────────────────────────────────── */
@media (prefers-reduced-motion:reduce) {
  *,*::before,*::after {
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
  }
  .hero-img { animation:none !important; }
  .fade-up  { opacity:1 !important; transform:none !important; }
}

/* ───────────────────────────────────────
   MOBILE-FIRST BREAKPOINTS
   Base = mobile, expand up via min-width
─────────────────────────────────────── */
.intro-grid,.acres-grid,.hiring-grid,.contact-grid { grid-template-columns:1fr; }
.pick-grid,.activities-grid { grid-template-columns:1fr; }
.why-grid { grid-template-columns:1fr 1fr; }
.footer-grid { grid-template-columns:1fr; }
.nav-links,.nav-cta { display:none; }
.nav-hamburger { display:flex; }
.movein-inner { flex-direction:column; text-align:center; }
.hero { min-height:380px; }
.section-pad { padding:3rem 0; }

@media(min-width:640px){
  .pick-grid { grid-template-columns:repeat(2,1fr); }
  .hero { min-height:440px; }
}
@media(min-width:768px){
  .nav-links,.nav-cta { display:flex; }
  .nav-hamburger { display:none; }
  .activities-grid { grid-template-columns:repeat(2,1fr); }
  .why-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-brand { grid-column:1/-1; }
  .hero { min-height:500px; }
  .section-pad { padding:4rem 0; }
}
@media(min-width:1024px){
  .intro-grid,.acres-grid,.hiring-grid,.contact-grid { grid-template-columns:1fr 1fr; }
  .pick-grid { grid-template-columns:repeat(3,1fr); }
  .activities-grid { grid-template-columns:repeat(3,1fr); }
  .why-grid { grid-template-columns:repeat(4,1fr); }
  .footer-grid { grid-template-columns:2fr 1fr 1fr; }
  .footer-brand { grid-column:auto; }
  .movein-inner { flex-direction:row; text-align:left; }
  .hero { min-height:580px; }
  .section-pad { padding:5rem 0; }
}

/* ── WordPress image output fixes ──────────────────────── */
/* wp_get_attachment_image outputs <img> directly — needs these */
.activity-card-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}
.activity-card-img-wrap img,
.activity-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.intro-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.acres-photo {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
