/* Logan Loans - Premium Warm & Friendly
   tokens + components + utility + enhanced animations
   2026-02-03 — Logan Loans — Warm Sage
*/

:root{
  /* Colors - WCAG AA compliant */
  --bg: #FBF7EF;           /* warm white */
  --surface: #FFFFFF;      /* pure white for cards */
  --ink: #1F2933;          /* charcoal - 12.6:1 on bg */
  --muted: #52616B;        /* soft slate - 5.8:1 on bg */
  --primary: #165A3F;      /* evergreen - 7.2:1 on bg */
  --sage: #CFE7D7;         /* surface accent */
  --border: #E7E0D6;
  --apricot: #F3B27A;      /* warm accent */
  --mint: #2FAF7A;         /* success/active */
  --glow: rgba(243,178,122,0.35);

  /* Layout */
  --max: 1120px;
  --padX: 20px;
  --sectionY: 80px;
  --sectionYMobile: 56px;

  /* Radius */
  --rDoor: 22px;
  --rCard: 16px;
  --rPill: 999px;

  /* Type - System fonts for performance */
  --fontBody: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --fontHead: Georgia, 'Times New Roman', serif;

  /* Motion */
  --ease: cubic-bezier(.2,.8,.2,1);
  --easeOut: cubic-bezier(0, 0, 0.2, 1);
  --easeBounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --tFast: 160ms;
  --tMed: 420ms;
  --tSlow: 720ms;

  /* Shadows */
  --shadow: 0 16px 40px rgba(22, 90, 63, 0.12);
  --shadowHover: 0 22px 52px rgba(22, 90, 63, 0.18);
  --shadowCard: 0 14px 28px rgba(22, 90, 63, 0.10);
  --shadowGlow: 0 0 60px rgba(243, 178, 122, 0.25);

  /* Focus - accessible */
  --focus: 0 0 0 4px rgba(47, 175, 122, 0.25);
}

/* ============================================
   ACCESSIBILITY: Skip Link
   ============================================ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--bg);
  padding: 12px 24px;
  border-radius: var(--rPill);
  font-weight: 700;
  z-index: 10000;
  transition: top var(--tFast) var(--ease);
}
.skip-link:focus {
  top: 12px;
  outline: none;
  box-shadow: var(--focus);
}

/* ============================================
   REDUCED MOTION: Respect user preferences
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .door { transform: none; opacity: 1; }
  .threshold { transform: scaleX(1); }
  .doorSheen { display: none; }
  .pathLine { stroke-dashoffset: 0; }
  .pathPulse { display: none; }
}

/* ============================================
   RESET & BASE
   ============================================ */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: var(--fontBody);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  font-size: 19px; /* Increased for readability */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img{ max-width:100%; display:block; height:auto; }
a{ color: inherit; text-decoration:none; }
button, input, textarea, select{
  font: inherit;
}
::selection{
  background: var(--glow);
}

/* ============================================
   UTILITIES
   ============================================ */
.wrap{ max-width: var(--max); margin: 0 auto; padding: 0 var(--padX); }
.stack{ display:flex; flex-direction:column; gap: 12px; }
.stack-lg{ display:flex; flex-direction:column; gap: 20px; }
.row{ display:flex; gap: 12px; align-items:center; flex-wrap:wrap; }
.muted{ color: var(--muted); }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Typography - Larger sizes for readability */
.kicker{
  display:inline-block;
  font-size: 14px; /* Increased from 12px */
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 14px 0;
  font-weight: 700;
}
.h1{
  font-family: var(--fontHead);
  font-size: clamp(36px, 5vw, 60px); /* Increased */
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.5px;
  font-weight: 700;
}
.h2{
  font-family: var(--fontHead);
  font-size: clamp(30px, 3.5vw, 46px); /* Increased */
  margin: 0;
  line-height: 1.15;
  font-weight: 700;
}
.h3{
  font-family: var(--fontHead);
  font-size: clamp(24px, 2.5vw, 30px); /* Increased */
  margin: 0;
  line-height: 1.25;
  font-weight: 700;
}
.p{
  margin: 0;
  font-size: 20px; /* Increased from 18px */
  color: var(--muted);
  max-width: 65ch;
  line-height: 1.7;
}
.small{ font-size: 16px; } /* Increased from 14px */
.tiny{ font-size: 14px; } /* Increased from 12px */
.hr{ height: 1px; background: var(--border); border:0; margin: 24px 0; }

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 239, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 16px;
}
.brand{
  display:flex;
  align-items:center;
  gap: 10px;
}
.brandLogo{
  height: 40px;
  width: auto;
  transition: transform var(--tFast) var(--ease);
}
.brand:hover .brandLogo{
  transform: scale(1.03);
}
/* Fallback if no logo image */
.brandMark{
  width: 28px; height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, #1e7a54 100%);
  box-shadow: 0 6px 16px rgba(22, 90, 63, 0.25);
  transition: transform var(--tFast) var(--easeBounce), box-shadow var(--tFast) var(--ease);
}
.brand:hover .brandMark{
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 8px 20px rgba(22, 90, 63, 0.3);
}
.navLinks{
  display:flex;
  align-items:center;
  gap: 6px;
  flex-wrap:wrap;
}
.navLinks a{
  color: var(--muted);
  font-weight: 600;
  font-size: 16px; /* Increased from 14px */
  padding: 10px 14px;
  border-radius: 10px;
  transition: all var(--tFast) var(--ease);
  position: relative;
}
.navLinks a::after{
  content: '';
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--tFast) var(--ease);
}
.navLinks a:hover{
  color: var(--ink);
  background: rgba(207,231,215,0.35);
}
.navLinks a:hover::after{
  transform: scaleX(1);
}
.navCta{ display:flex; gap: 10px; align-items:center; }

/* ============================================
   BUTTONS - Enhanced with micro-interactions
   ============================================ */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: var(--rPill);
  padding: 16px 28px;
  font-weight: 700;
  font-size: 17px; /* Increased from 15px */
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--tFast) var(--easeBounce);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn:focus{ outline:none; box-shadow: var(--focus); }
.btn:active{ transform: scale(0.97); }

.btnPrimary{
  background: linear-gradient(135deg, var(--primary) 0%, #1e7a54 100%);
  color: var(--bg);
  box-shadow: 0 8px 24px rgba(22, 90, 63, 0.22);
}
.btnPrimary::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--tFast) var(--ease);
}
.btnPrimary:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(22, 90, 63, 0.28);
}
.btnPrimary:hover::before{ opacity: 1; }

.btnSecondary{
  background: var(--surface);
  color: var(--primary);
  border-color: rgba(22,90,63,0.2);
  box-shadow: 0 4px 12px rgba(22, 90, 63, 0.08);
}
.btnSecondary:hover{
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(22, 90, 63, 0.15);
}

.btnGhost{
  background: transparent;
  color: var(--primary);
  border-color: rgba(22,90,63,0.18);
}
.btnGhost:hover{
  background: rgba(207,231,215,0.3);
  border-color: rgba(22,90,63,0.3);
}

/* ============================================
   SECTIONS
   ============================================ */
.section{ padding: var(--sectionY) 0; }
@media (max-width: 900px){
  .section{ padding: var(--sectionYMobile) 0; }
}

/* Threshold line - enhanced animation */
.threshold{
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--mint), var(--apricot));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 800ms var(--easeOut);
  margin-bottom: 20px;
  border-radius: 2px;
}
.section.is-visible .threshold{ transform: scaleX(1); }

/* ============================================
   HERO - Premium doorway entrance
   ============================================ */
.hero{ padding: 60px 0 50px; }
.door{
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--rDoor);
  background: linear-gradient(180deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.5) 100%);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.8);
  overflow: hidden;
  transform: scale(0.96) translateY(20px);
  opacity: 0;
  animation: doorIn 900ms var(--easeOut) forwards;
  animation-delay: 100ms;
}
@keyframes doorIn{
  to { transform: scale(1) translateY(0); opacity: 1; }
}

/* Grid pattern overlay */
.door::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(to right, rgba(22,90,63,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(22,90,63,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 30% 0%, rgba(0,0,0,0.7), transparent 70%);
  pointer-events:none;
}

/* Warm glow */
.door::after{
  content:"";
  position:absolute;
  inset:-60px;
  background: radial-gradient(ellipse at 20% 10%, rgba(243,178,122,0.2), transparent 50%),
              radial-gradient(ellipse at 80% 90%, rgba(207,231,215,0.3), transparent 50%);
  pointer-events:none;
}

.heroInner{
  position:relative;
  padding: 48px 44px;
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items:center;
}
@media (max-width: 900px){
  .hero{ padding-top: 48px; }
  .heroInner{ grid-template-columns: 1fr; padding: 32px 24px; }
}

/* Sunlit glass sheen - more vibrant */
.doorSheen{
  position:absolute;
  inset:-100px;
  pointer-events:none;
  background:
    linear-gradient(115deg,
      rgba(255,255,255,0) 25%,
      rgba(255,255,255,0.5) 42%,
      rgba(243,178,122,0.15) 50%,
      rgba(255,255,255,0.08) 58%,
      rgba(255,255,255,0) 75%);
  transform: translateX(-60%) rotate(0.001deg);
  opacity: 0.4;
  mix-blend-mode: overlay;
  animation: sheen 12s var(--ease) infinite;
}
@keyframes sheen{
  0%, 65%, 100% { transform: translateX(-70%) rotate(0.001deg); opacity: 0.2; }
  75% { opacity: 0.6; }
  90% { transform: translateX(50%) rotate(0.001deg); opacity: 0.3; }
}

/* ============================================
   TRUST PANEL
   ============================================ */
.trust{
  display:flex;
  flex-direction:column;
  gap: 12px;
  padding: 20px;
  border-radius: var(--rCard);
  border: 1px solid var(--border);
  background: rgba(251,247,239,0.95);
  box-shadow: 0 8px 24px rgba(22, 90, 63, 0.08);
}
.trust strong{ color: var(--primary); }
.trustItem{
  font-size: 14px;
  color: var(--muted);
  padding-left: 12px;
  border-left: 3px solid var(--sage);
  transition: border-color var(--tFast) var(--ease);
}
.trustItem:hover{
  border-color: var(--primary);
}

/* Presence indicator - friendlier pulse */
.presence{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  margin-left: 8px;
}
.dot{
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 0 rgba(47,175,122,0);
  animation: friendlyPulse 3s var(--ease) infinite;
}
@keyframes friendlyPulse{
  0%, 100% { box-shadow: 0 0 0 0 rgba(47,175,122,0); transform: scale(1); }
  50% { box-shadow: 0 0 0 8px rgba(47,175,122,0.15); transform: scale(1.1); }
}

/* ============================================
   CARDS - Enhanced with playful hover
   ============================================ */
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.grid4{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
}
@media (max-width: 1000px){
  .grid4{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px){
  .grid3{ grid-template-columns: 1fr; }
}
@media (max-width: 600px){
  .grid4{ grid-template-columns: 1fr; }
}

.card{
  border: 1px solid var(--border);
  border-radius: var(--rCard);
  padding: 22px;
  background: rgba(255,255,255,0.65);
  transition: all var(--tMed) var(--easeBounce);
  position: relative;
}
.card::before{
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--rCard);
  background: linear-gradient(135deg, rgba(207,231,215,0.3) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--tFast) var(--ease);
}
.card:hover{
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadowCard), 0 0 0 1px rgba(22,90,63,0.08);
  border-color: rgba(22,90,63,0.15);
}
.card:hover::before{ opacity: 1; }
.cardTitle{
  font-weight: 800;
  margin: 0 0 10px 0;
  font-size: 20px; /* Increased from 17px */
  position: relative;
}
.cardText{
  color: var(--muted);
  margin: 0;
  font-size: 17px; /* Increased from 15px */
  line-height: 1.6;
  position: relative;
}
.cardLink{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
}
.chev{
  width: 32px; height: 32px;
  border-radius: 10px;
  border: 1px solid rgba(22,90,63,0.15);
  display:grid; place-items:center;
  color: var(--primary);
  background: rgba(251,247,239,0.9);
  font-size: 16px;
  transition: all var(--tFast) var(--easeBounce);
  flex-shrink: 0;
}
.card:hover .chev{
  background: var(--primary);
  color: var(--bg);
  transform: translateX(4px);
}

/* ============================================
   INVESTOR SECTION - Highlighted
   ============================================ */
.investorSection{
  background: linear-gradient(180deg, rgba(207,231,215,0.15) 0%, transparent 100%);
  border-radius: var(--rDoor);
  padding: 32px;
  margin-top: 24px;
  border: 1px solid rgba(22,90,63,0.1);
}
.investorSection .kicker{
  background: linear-gradient(135deg, var(--primary), var(--mint));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   STEPS - Animated entrance
   ============================================ */
.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}
@media (max-width: 900px){
  .steps{ grid-template-columns: 1fr; }
}
.step{
  border: 1px solid var(--border);
  border-radius: var(--rCard);
  padding: 24px;
  background: rgba(251,247,239,0.6);
  position: relative;
  transition: all var(--tMed) var(--ease);
}
.step:hover{
  background: rgba(255,255,255,0.8);
  transform: translateY(-4px);
  box-shadow: var(--shadowCard);
}
.stepNum{
  width: 40px; height: 40px;
  border-radius: 12px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, var(--sage) 0%, rgba(207,231,215,0.6) 100%);
  color: var(--primary);
  font-weight: 900;
  font-size: 18px;
  border: 1px solid rgba(22,90,63,0.1);
  margin-bottom: 14px;
  transition: all var(--tFast) var(--easeBounce);
}
.step:hover .stepNum{
  transform: scale(1.1) rotate(-5deg);
  background: var(--primary);
  color: var(--bg);
}

/* ============================================
   CALCULATOR EMBED (iframe)
   ============================================ */
.calculatorWrap{
  border: 1px solid var(--border);
  border-radius: var(--rDoor);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
  margin-top: 20px;
}
.calculatorWrap iframe{
  width: 100%;
  min-height: 700px;
  border: none;
  display: block;
}

/* ============================================
   INVESTOR SECTION — Elevated
   ============================================ */
.investorHero{
  background: linear-gradient(135deg, rgba(22,90,63,0.06) 0%, rgba(207,231,215,0.25) 40%, rgba(243,178,122,0.12) 100%);
  border: 2px solid rgba(22,90,63,0.15);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.6);
  padding: 40px 36px;
}
.investorCard{
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(22,90,63,0.12);
  transition: all var(--tMed) var(--easeBounce);
}
.investorCard:hover{
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadowHover);
  border-color: var(--primary);
}
.investorCard .cardTitle{
  font-size: 22px;
}
.investorCard .cardText{
  font-size: 16px;
  line-height: 1.65;
}

/* ============================================
   PATH TO KEYS - Enhanced animation
   ============================================ */
.pathWrap{
  margin-top: 18px;
  max-width: 560px;
}
.pathSvg{
  width: 100%;
  height: auto;
  overflow: visible;
}
.pathLine{
  fill: none;
  stroke: rgba(22,90,63,0.3);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  animation: lineDraw 5s var(--ease) infinite;
}
@keyframes lineDraw{
  0%   { stroke-dashoffset: 520; opacity: 0.3; }
  25%  { stroke-dashoffset: 0; opacity: 1; }
  75%  { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: -520; opacity: 0.3; }
}
.pathDot{
  fill: var(--mint);
  opacity: 0.9;
  filter: drop-shadow(0 4px 8px rgba(22,90,63,0.2));
  transform-origin: center;
  animation: dotBounce 4s var(--easeBounce) infinite;
}
.pathDot:nth-of-type(2){ animation-delay: 0.5s; }
.pathDot:nth-of-type(3){ animation-delay: 1s; }
@keyframes dotBounce{
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}
.pathLabel{
  font-family: var(--fontBody);
  font-size: 12px;
  font-weight: 600;
  fill: var(--muted);
}
.pathPulse{
  fill: var(--apricot);
  stroke: rgba(243,178,122,0.4);
  stroke-width: 8;
  opacity: 0.85;
  filter: drop-shadow(0 8px 16px rgba(243,178,122,0.35));
}
@media (max-width: 900px){
  .pathLabel{ font-size: 11px; }
}

/* ============================================
   TESTIMONIALS - Warmer feel
   ============================================ */
.quotes{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}
@media (max-width: 900px){
  .quotes{ grid-template-columns: 1fr; }
}
.quote{
  border: 1px solid var(--border);
  border-radius: var(--rCard);
  padding: 24px;
  background: linear-gradient(180deg, rgba(251,247,239,0.8) 0%, rgba(255,255,255,0.6) 100%);
  position: relative;
  transition: all var(--tMed) var(--ease);
}
.quote::before{
  content: '"';
  position: absolute;
  top: 12px;
  left: 16px;
  font-size: 48px;
  font-family: Georgia, serif;
  color: var(--sage);
  line-height: 1;
}
.quote:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadowCard);
}
.qText{
  margin: 0 0 12px 0;
  color: var(--ink);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.55;
  padding-left: 8px;
}
.qMeta{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

/* ============================================
   FAQ - Smooth accordion
   ============================================ */
.faq{
  margin-top: 20px;
  border: 1px solid var(--border);
  border-radius: var(--rDoor);
  overflow: hidden;
  background: rgba(255,255,255,0.6);
}
.faqItem{ border-top: 1px solid var(--border); }
.faqItem:first-child{ border-top: 0; }
.faqBtn{
  width: 100%;
  text-align:left;
  border:0;
  background: transparent;
  padding: 20px;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  cursor: pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
  transition: background var(--tFast) var(--ease);
}
.faqBtn:hover{
  background: rgba(207,231,215,0.2);
}
.faqBtn:focus{ outline:none; box-shadow: inset var(--focus); }
.faqIcon{
  width: 32px; height: 32px;
  border-radius: 10px;
  border: 1px solid rgba(22,90,63,0.15);
  display:grid; place-items:center;
  color: var(--primary);
  background: rgba(251,247,239,0.9);
  flex: 0 0 auto;
  font-size: 18px;
  font-weight: 400;
  transition: all var(--tMed) var(--easeBounce);
}
.faqBtn[aria-expanded="true"] .faqIcon{
  background: var(--primary);
  color: var(--bg);
  transform: rotate(45deg);
}
.faqPanel{
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--tMed) var(--ease);
}
.faqPanelInner{
  padding: 0 20px 20px 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  background: linear-gradient(to bottom, rgba(207,231,215,0.15), transparent 80%);
}

/* ============================================
   FORMS - Friendly and accessible
   ============================================ */
.formWrap{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}
@media (max-width: 900px){
  .formWrap{ grid-template-columns: 1fr; }
}
.formCard{
  border: 1px solid var(--border);
  border-radius: var(--rDoor);
  background: rgba(255,255,255,0.7);
  box-shadow: var(--shadow);
  padding: 24px;
}
.formGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}
@media (max-width: 720px){
  .formGrid{ grid-template-columns: 1fr; }
}
.field{
  display:flex;
  flex-direction:column;
  gap: 6px;
}
.fieldFull{ grid-column: 1 / -1; }
.label, label{
  font-weight: 700;
  font-size: 16px; /* Increased */
  color: var(--ink);
}
.input, input, textarea, select{
  width: 100%;
  padding: 16px 18px;
  border-radius: 12px;
  border: 2px solid rgba(22,90,63,0.12);
  background: rgba(255,255,255,0.9);
  font-size: 18px; /* Increased from 16px */
  font-weight: 500;
  transition: all var(--tFast) var(--ease);
}
.input:focus, input:focus, textarea:focus, select:focus{
  outline: none;
  border-color: var(--primary);
  box-shadow: var(--focus);
  background: var(--surface);
}
.input::placeholder, input::placeholder, textarea::placeholder{
  color: rgba(82, 97, 107, 0.5);
}
.help{
  font-size: 15px; /* Increased */
  color: var(--muted);
  margin-top: 6px;
}
.srOnly{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}

/* Inline validation status */
.inlineStatus{
  display:flex;
  align-items:center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  min-height: 20px;
  margin-top: 8px;
}
.check{
  width: 20px; height: 20px;
  border-radius: 6px;
  border: 2px solid rgba(22,90,63,0.15);
  display:grid; place-items:center;
  color: var(--mint);
  background: rgba(207,231,215,0.3);
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--tFast) var(--easeBounce);
}
.inlineStatus.ok .check{
  opacity: 1;
  transform: scale(1);
  background: var(--mint);
  color: white;
  border-color: var(--mint);
}

/* Notice/info box */
.notice{
  border: 2px dashed rgba(22,90,63,0.2);
  border-radius: var(--rCard);
  padding: 16px;
  background: rgba(207,231,215,0.2);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

/* ============================================
   PORCH CTA - Warm glow effect
   ============================================ */
.porch{
  border: 1px solid var(--border);
  border-radius: var(--rDoor);
  background: linear-gradient(135deg, rgba(207,231,215,0.4) 0%, rgba(255,255,255,0.6) 50%, rgba(243,178,122,0.15) 100%);
  box-shadow: var(--shadow);
  padding: 28px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.porch::before{
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(243,178,122,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.porchPulse{
  animation: porchGlow 6s var(--ease) infinite;
}
@keyframes porchGlow{
  0%, 100% { box-shadow: var(--shadow); }
  50% { box-shadow: var(--shadowHover), var(--shadowGlow); }
}

/* ============================================
   FOOTER - Simplified layout
   ============================================ */
.footer{
  border-top: 1px solid var(--border);
  padding: 48px 0 40px;
  background: linear-gradient(180deg, transparent 0%, rgba(207,231,215,0.1) 100%);
}

/* New simplified footer layout */
.footerSimple{
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
@media (max-width: 900px){
  .footerSimple{
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
}
.footerMain{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footerLogo{
  height: 45px;
  width: auto;
}
@media (max-width: 900px){
  .footerLogo{ margin: 0 auto; }
}
.footerTagline{
  font-size: 18px;
  color: var(--muted);
  margin: 0;
}
.footerContact p{
  margin: 0 0 8px 0;
  font-size: 17px;
}
.footerSocial .socialLinks{
  display: flex;
  gap: 20px;
}
@media (max-width: 900px){
  .footerSocial .socialLinks{ justify-content: center; }
}
.footerSocial .socialLinks a{
  font-weight: 600;
  font-size: 16px;
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footerSocial .socialLinks a:hover{
  color: var(--ink);
}
.footerBottom{
  padding-top: 24px;
  border-top: 1px dashed rgba(22,90,63,0.15);
}
.footerLicense{
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 8px 0;
}
.footerLicense a{
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 900px){
  .footerBottom{ text-align: center; }
}

/* Legacy footer grid (for other pages) */
.footerGrid{
  display:grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 0.9fr;
  gap: 24px;
}
@media (max-width: 900px){
  .footerGrid{
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.footBrand{
  font-weight: 900;
  font-size: 17px;
  letter-spacing: 0.5px;
  margin: 0 0 10px 0;
}
.footTitle{
  font-weight: 800;
  margin: 0 0 14px 0;
  font-size: 18px;
}
.footList{
  margin: 0;
  padding: 0;
  list-style: none;
}
.footList li{
  margin: 0 0 10px 0;
  color: var(--muted);
  font-size: 16px;
}
.footList li a{
  transition: color var(--tFast) var(--ease);
}
.footList li a:hover{
  color: var(--primary);
}
.footList li strong{ color: var(--ink); }

.footerLegal{
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px dashed rgba(22,90,63,0.18);
}
.footerLegal .footList{
  display:flex;
  flex-wrap:wrap;
  gap: 12px 20px;
  justify-content: flex-start;
}
@media (max-width: 900px){
  .footerLegal .footList{ justify-content: center; }
}
.footerLegal .footList li{ margin:0; }

/* Footer credit - Orange per spec */
.footerEnd{
  margin-top: 24px;
  font-size: 16px; /* Increased */
  font-weight: 800;
  color: #ff7a1a;
}
.footerEnd a{
  color: #ff7a1a;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footerEnd a:hover{
  color: #e86a0a;
}

/* ============================================
   MOBILE NAV - Drawer
   ============================================ */
.navToggle{
  border: 1px solid rgba(22,90,63,0.18);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(251,247,239,0.95);
  color: var(--primary);
  cursor: pointer;
  transition: all var(--tFast) var(--ease);
}
.navToggle:hover{
  background: var(--sage);
}
.navToggle:focus{ outline:none; box-shadow: var(--focus); }
.burger{
  display:block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  position: relative;
  border-radius: 2px;
  transition: all var(--tFast) var(--ease);
}
.burger::before, .burger::after{
  content:"";
  position:absolute;
  left:0;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--tFast) var(--ease);
}
.burger::before{ top: -7px; }
.burger::after{ top: 7px; }

/* Drawer */
.drawer{
  position: fixed;
  inset: 0;
  background: rgba(31,41,51,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tMed) var(--ease);
  z-index: 200;
}
.drawer.is-open{
  opacity: 1;
  pointer-events: auto;
}
.drawerInner{
  position:absolute;
  right: 12px;
  left: 12px;
  top: 12px;
  border-radius: var(--rDoor);
  background: rgba(251,247,239,0.98);
  border: 1px solid var(--border);
  box-shadow: var(--shadowHover);
  padding: 18px;
  transform: translateY(-10px) scale(0.98);
  transition: all var(--tMed) var(--easeBounce);
}
.drawer.is-open .drawerInner{
  transform: translateY(0) scale(1);
}
.drawerTop{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom: 8px;
}
.drawerTitle{
  margin:0;
  font-weight: 900;
  color: var(--ink);
  font-size: 17px;
}
.drawerClose{
  width: 40px;
  height: 40px;
  border: 1px solid rgba(22,90,63,0.15);
  border-radius: 12px;
  background: rgba(251,247,239,0.95);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 18px;
  transition: all var(--tFast) var(--ease);
}
.drawerClose:hover{
  background: var(--sage);
}
.drawerClose:focus{ outline:none; box-shadow: var(--focus); }
.drawerLink{
  display:block;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 700;
  color: var(--ink);
  border: 1px solid transparent;
  transition: all var(--tFast) var(--ease);
}
.drawerLink:hover{
  background: rgba(207,231,215,0.4);
  border-color: rgba(22,90,63,0.1);
}
.drawerCtas{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.drawerNote{
  margin: 14px 0 0 0;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

/* ============================================
   MOBILE BAR - Sticky CTA
   ============================================ */
.mobileBar{
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display:flex;
  gap: 10px;
  padding: 12px;
  border-radius: var(--rDoor);
  background: rgba(251,247,239,0.95);
  border: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(22, 90, 63, 0.15);
  z-index: 50;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.mobileBarBtn{
  flex: 1;
  padding: 14px 16px;
}

/* Prevent mobile bar covering content */
body{ padding-bottom: 100px; }
@media (min-width: 901px){
  body{ padding-bottom: 0; }
}

/* ============================================
   RESPONSIVE VISIBILITY
   ============================================ */
.desktopOnly{ display: flex; }
.mobileOnly{ display: none; }
@media (max-width: 900px){
  .desktopOnly{ display: none !important; }
  .mobileOnly{ display: block !important; }
}

/* ============================================
   SUB-NAV LINKS
   ============================================ */
.subNav{
  font-size: 12px !important;
  opacity: 0.85;
  padding: 6px 10px !important;
  border-radius: 8px;
  border: 1px solid rgba(22,90,63,0.12) !important;
  background: rgba(207,231,215,0.15);
}
.subNav:hover{
  opacity: 1;
  background: rgba(207,231,215,0.3);
}
@media (max-width: 900px){
  .subNav{ display:none !important; }
}

/* ============================================
   CHIPS / TAGS
   ============================================ */
.chipGrid{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(22,90,63,0.15);
  background: rgba(207,231,215,0.2);
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: all var(--tFast) var(--ease);
}
.chip:hover{
  background: rgba(207,231,215,0.4);
  border-color: rgba(22,90,63,0.25);
  transform: translateY(-2px);
}
.related{
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(22,90,63,0.1);
}
@media (max-width: 700px){
  .chipGrid{ justify-content: center; }
  .related{ text-align: center; }
  .chip{ font-size: 14px; padding: 12px 16px; }
}

/* ============================================
   BADGES
   ============================================ */
.badgeRow{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}
.badge{
  display:inline-flex;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(22,90,63,0.15);
  background: rgba(207,231,215,0.25);
  font-weight: 700;
  font-size: 13px;
  color: var(--primary);
}

/* ============================================
   INSTAGRAM FEED
   ============================================ */
.instaGrid{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.instaCard{
  display:block;
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(22,90,63,0.12);
  background: rgba(255,255,255,0.7);
  aspect-ratio: 1 / 1;
  transition: all var(--tMed) var(--easeBounce);
}
.instaCard:hover{
  transform: scale(1.05) rotate(-1deg);
  box-shadow: var(--shadowCard);
}
.instaCard img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
@media (max-width: 900px){
  .instaGrid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 520px){
  .instaGrid{ grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   UTILITY LINKS
   ============================================ */
.uLink{
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  color: var(--primary);
  font-weight: 700;
  transition: all var(--tFast) var(--ease);
}
.uLink:hover{
  text-decoration-color: var(--apricot);
}

/* ============================================
   RESPONSIVE TYPOGRAPHY
   ============================================ */
@media (max-width: 900px){
  .p{ font-size: 17px; }
  .btn{ padding: 14px 20px; }
  .navLinks a{ padding: 10px 12px; }
  .hero{ padding-bottom: 32px; }
  .pathWrap{ max-width: 480px; }
}

/* ============================================
   HERO WITH IMAGE - Two column layout
   ============================================ */
.heroWithImage{
  grid-template-columns: 1.1fr 0.9fr;
}
.heroContent{
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.heroVisual{
  display: flex;
  align-items: center;
  justify-content: center;
}
.heroImage{
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--rDoor);
  box-shadow: var(--shadowCard);
  object-fit: cover;
  transition: transform var(--tMed) var(--ease);
}
.heroImage:hover{
  transform: scale(1.02);
}
@media (max-width: 900px){
  .heroWithImage{
    grid-template-columns: 1fr;
  }
  .heroVisual{
    order: -1;
    margin-bottom: 16px;
  }
  .heroImage{
    max-width: 100%;
    max-height: 280px;
    object-fit: cover;
    width: 100%;
  }
}

/* ============================================
   MEET LOGAN SECTION
   ============================================ */
.meetLogan{
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: center;
  margin-top: 24px;
}
.loganPhoto{
  display: flex;
  justify-content: center;
}
.loganHeadshot{
  border-radius: var(--rDoor);
  box-shadow: var(--shadowCard);
  max-width: 100%;
  height: auto;
  object-fit: cover;
  transition: all var(--tMed) var(--ease);
}
.loganHeadshot:hover{
  transform: scale(1.02) rotate(-1deg);
  box-shadow: var(--shadowHover);
}
.loganBio{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.loganBio .p{
  font-size: 19px;
  line-height: 1.75;
}
@media (max-width: 900px){
  .meetLogan{
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  .loganHeadshot{
    max-width: 280px;
    margin: 0 auto;
  }
  .loganBio .btn{
    align-self: center;
  }
}

/* ============================================
   ARIZONA SHOWCASE GALLERY
   ============================================ */
.arizonaShowcase{
  background: linear-gradient(180deg, rgba(207,231,215,0.08) 0%, transparent 100%);
}
.arizonaGrid{
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 24px;
}
.arizonaItem{
  border-radius: var(--rCard);
  overflow: hidden;
  box-shadow: var(--shadowCard);
  transition: all var(--tMed) var(--easeBounce);
}
.arizonaItem img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--tMed) var(--ease);
}
.arizonaItem:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadowHover);
}
.arizonaItem:hover img{
  transform: scale(1.05);
}
.arizonaLarge{
  grid-row: span 2;
}
.arizonaLarge img{
  height: 100%;
  min-height: 320px;
}
@media (max-width: 900px){
  .arizonaGrid{
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .arizonaLarge{
    grid-column: span 2;
    grid-row: span 1;
  }
  .arizonaLarge img{
    min-height: 200px;
    max-height: 300px;
  }
}
@media (max-width: 600px){
  .arizonaGrid{
    grid-template-columns: 1fr;
  }
  .arizonaLarge{
    grid-column: span 1;
  }
}

/* ============================================
   PREMIUM SCROLL ANIMATIONS
   Staggered card reveals, glow effects, parallax-lite
   ============================================ */

/* --- Scroll-triggered fade-up for cards, steps, quotes --- */
.card,
.step,
.quote,
.arizonaItem,
.instaCard,
.formCard,
.investorSection,
.porch {
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  transition:
    opacity 600ms var(--easeOut),
    transform 600ms var(--easeOut),
    box-shadow var(--tMed) var(--easeBounce),
    border-color var(--tFast) var(--ease);
}

/* When parent section is visible, cascade children in */
.section.is-visible .card,
.section.is-visible .step,
.section.is-visible .quote,
.section.is-visible .arizonaItem,
.section.is-visible .instaCard,
.section.is-visible .formCard,
.section.is-visible .investorSection,
.section.is-visible .porch,
.hero .card,
.hero .porch {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger delays for grids - premium cascading effect */
.section.is-visible .card:nth-child(1),
.section.is-visible .step:nth-child(1),
.section.is-visible .quote:nth-child(1),
.section.is-visible .arizonaItem:nth-child(1) { transition-delay: 80ms; }
.section.is-visible .card:nth-child(2),
.section.is-visible .step:nth-child(2),
.section.is-visible .quote:nth-child(2),
.section.is-visible .arizonaItem:nth-child(2) { transition-delay: 160ms; }
.section.is-visible .card:nth-child(3),
.section.is-visible .step:nth-child(3),
.section.is-visible .quote:nth-child(3),
.section.is-visible .arizonaItem:nth-child(3) { transition-delay: 240ms; }
.section.is-visible .card:nth-child(4),
.section.is-visible .arizonaItem:nth-child(4) { transition-delay: 320ms; }
.section.is-visible .card:nth-child(5),
.section.is-visible .arizonaItem:nth-child(5) { transition-delay: 400ms; }
.section.is-visible .card:nth-child(6) { transition-delay: 480ms; }
.section.is-visible .formCard:nth-child(1) { transition-delay: 100ms; }
.section.is-visible .formCard:nth-child(2) { transition-delay: 220ms; }

/* Hero items reveal with longer entrance */
.hero .card { transition-delay: 400ms; }
.hero .porch { transition-delay: 200ms; opacity: 1; transform: none; }

/* --- Warm Glow CTA Pulse --- */
.btnPrimary {
  position: relative;
}
.btnPrimary::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--rPill);
  background: linear-gradient(135deg, rgba(22,90,63,0.3), rgba(243,178,122,0.4));
  opacity: 0;
  z-index: -1;
  transition: opacity var(--tMed) var(--ease);
  filter: blur(12px);
}
.btnPrimary:hover::after {
  opacity: 1;
  animation: ctaGlow 2s var(--ease) infinite;
}
@keyframes ctaGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

/* --- Card shine sweep on hover --- */
.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );
  transform: skewX(-15deg);
  transition: none;
  pointer-events: none;
  z-index: 1;
}
.card:hover::after {
  animation: cardShine 700ms var(--easeOut) forwards;
}
@keyframes cardShine {
  to { left: 130%; }
}

/* --- Step number bounce on section reveal --- */
.section.is-visible .stepNum {
  animation: stepPop 500ms var(--easeBounce);
  animation-fill-mode: backwards;
}
.section.is-visible .step:nth-child(1) .stepNum { animation-delay: 300ms; }
.section.is-visible .step:nth-child(2) .stepNum { animation-delay: 450ms; }
.section.is-visible .step:nth-child(3) .stepNum { animation-delay: 600ms; }
@keyframes stepPop {
  0% { transform: scale(0) rotate(-20deg); }
  60% { transform: scale(1.15) rotate(5deg); }
  100% { transform: scale(1) rotate(0); }
}

/* --- Parallax-lite on hero image --- */
.heroImage {
  transition: transform var(--tMed) var(--ease);
  will-change: transform;
}
.hero:hover .heroImage {
  transform: scale(1.03) translate(-2px, -3px);
}

/* --- Quote entrance - slide from alternating sides --- */
.section.is-visible .quote:nth-child(odd) {
  animation: slideFromLeft 600ms var(--easeOut) forwards;
}
.section.is-visible .quote:nth-child(even) {
  animation: slideFromRight 600ms var(--easeOut) forwards;
}
.section.is-visible .quote:nth-child(1) { animation-delay: 100ms; }
.section.is-visible .quote:nth-child(2) { animation-delay: 200ms; }
.section.is-visible .quote:nth-child(3) { animation-delay: 300ms; }
@keyframes slideFromLeft {
  from { opacity: 0; transform: translateX(-30px) scale(0.96); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes slideFromRight {
  from { opacity: 0; transform: translateX(30px) scale(0.96); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

/* --- Arizona gallery zoom-reveal --- */
.section.is-visible .arizonaItem img {
  animation: zoomReveal 800ms var(--easeOut) forwards;
  animation-fill-mode: backwards;
}
.section.is-visible .arizonaItem:nth-child(1) img { animation-delay: 150ms; }
.section.is-visible .arizonaItem:nth-child(2) img { animation-delay: 250ms; }
.section.is-visible .arizonaItem:nth-child(3) img { animation-delay: 350ms; }
.section.is-visible .arizonaItem:nth-child(4) img { animation-delay: 450ms; }
.section.is-visible .arizonaItem:nth-child(5) img { animation-delay: 550ms; }
@keyframes zoomReveal {
  from { transform: scale(1.12); opacity: 0.6; }
  to { transform: scale(1); opacity: 1; }
}

/* --- Floating badge/chip entrance --- */
.section.is-visible .chip {
  opacity: 0;
  transform: translateY(12px);
  animation: chipFloat 400ms var(--easeBounce) forwards;
}
.section.is-visible .chip:nth-child(1) { animation-delay: 100ms; }
.section.is-visible .chip:nth-child(2) { animation-delay: 150ms; }
.section.is-visible .chip:nth-child(3) { animation-delay: 200ms; }
.section.is-visible .chip:nth-child(4) { animation-delay: 250ms; }
.section.is-visible .chip:nth-child(5) { animation-delay: 300ms; }
.section.is-visible .chip:nth-child(6) { animation-delay: 350ms; }
.section.is-visible .chip:nth-child(7) { animation-delay: 400ms; }
.section.is-visible .chip:nth-child(8) { animation-delay: 450ms; }
@keyframes chipFloat {
  to { opacity: 1; transform: translateY(0); }
}

/* --- Instagram hover delight --- */
.instaCard:hover {
  transform: scale(1.06) rotate(-2deg);
  box-shadow: var(--shadowHover), 0 0 30px rgba(243,178,122,0.2);
}
.instaCard:nth-child(even):hover {
  transform: scale(1.06) rotate(2deg);
}

/* --- FAQ open/close spring --- */
.faqBtn[aria-expanded="true"] .faqIcon {
  animation: faqSpin 400ms var(--easeBounce);
}
@keyframes faqSpin {
  0% { transform: rotate(0deg) scale(0.8); }
  50% { transform: rotate(50deg) scale(1.1); }
  100% { transform: rotate(45deg) scale(1); }
}

/* --- Trust panel slide-in --- */
.trust {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 700ms var(--easeOut);
  transition-delay: 500ms;
}
.door .trust {
  opacity: 1;
  transform: translateX(0);
}

/* --- Kicker text shimmer --- */
.section.is-visible .kicker {
  animation: kickerShimmer 600ms var(--easeOut);
}
@keyframes kickerShimmer {
  0% { opacity: 0; transform: translateY(8px); letter-spacing: 0.25em; }
  100% { opacity: 1; transform: translateY(0); letter-spacing: 0.16em; }
}

/* --- Section heading slide --- */
.section.is-visible .h1,
.section.is-visible .h2 {
  animation: headingSlide 600ms var(--easeOut);
}
@keyframes headingSlide {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Mobile bar entrance --- */
.mobileBar {
  animation: mobileBarUp 600ms var(--easeBounce) 1s forwards;
  opacity: 0;
  transform: translateY(100px);
}
@keyframes mobileBarUp {
  to { opacity: 1; transform: translateY(0); }
}

/* --- Reduced motion: strip all the fancy stuff --- */
@media (prefers-reduced-motion: reduce) {
  .card, .step, .quote, .arizonaItem, .instaCard, .formCard, .investorSection, .porch {
    opacity: 1;
    transform: none;
  }
  .trust {
    opacity: 1;
    transform: none;
  }
  .chip {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .mobileBar {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .btnPrimary::after { display: none; }
  .card::after { display: none; }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .header, .mobileBar, .drawer { display: none !important; }
  body { padding: 0; }
  .door { box-shadow: none; border: 1px solid #ccc; }
}
