/* ─────────────────────────────────────────────
   Shelby Navigational Insurance
   AI Cyber Consulting, LLC
   Palette: Maroon · Charcoal · Warm Grey · Gold Cream
───────────────────────────────────────────── */

:root {
  --maroon:      #6B1F2A;
  --maroon-deep: #4A1219;
  --maroon-mid:  #8B2E3A;
  --charcoal:    #1E1E1E;
  --dark:        #2C2424;
  --grey:        #5A5555;
  --grey-light:  #B8B0B0;
  --grey-pale:   #F2EEEE;
  --grey-card:   #EDE8E8;
  --gold:        #B4783C;
  --gold-light:  #D4A86A;
  --cream:       #FBF7F3;
  --white:       #FFFFFF;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Lato', sans-serif;

  --radius:      4px;
  --radius-lg:   10px;
  --transition:  0.3s ease;
  --shadow:      0 4px 24px rgba(30,10,10,0.12);
  --shadow-lg:   0 12px 48px rgba(30,10,10,0.2);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Demo Banner ─────────────────────────────── */
.demo-banner {
  background: var(--charcoal);
  color: var(--gold-light);
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding: 7px 16px;
  font-family: var(--font-sans);
}
.demo-banner strong { color: var(--white); }

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--maroon);
  color: var(--cream);
  border-color: var(--maroon);
}
.btn-primary:hover { background: var(--maroon-deep); border-color: var(--maroon-deep); box-shadow: var(--shadow); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--cream); }

.btn-gold {
  background: var(--gold);
  color: var(--cream);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); box-shadow: var(--shadow); }

.full-width { width: 100%; text-align: center; }

/* ── Section Labels / Titles ─────────────────── */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-label.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--maroon); }
.section-title.light { color: var(--cream); }
.section-title.light em { color: var(--gold-light); }

.section-sub {
  font-size: 1.05rem;
  color: var(--grey);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 48px;
}
.section-sub.light { color: rgba(255,255,255,0.75); }

/* ── NAVBAR ──────────────────────────────────── */
.navbar {
  position: fixed;
  top: 28px; /* offset demo banner */
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), top var(--transition);
}
.navbar.scrolled {
  top: 0;
  background: rgba(26, 10, 12, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(180,120,60,0.3));
  transition: filter var(--transition);
}
.nav-logo:hover .nav-logo-img {
  filter: drop-shadow(0 2px 16px rgba(180,120,60,0.6));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  padding: 6px 10px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links .nav-cta {
  background: var(--maroon);
  color: var(--cream);
  padding: 8px 16px;
  border: 1px solid var(--maroon-mid);
}
.nav-links .nav-cta:hover { background: var(--maroon-mid); color: var(--cream); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(107,31,42,0.35) 0%, transparent 70%),
    linear-gradient(135deg, #1A0A0C 0%, #2C1418 40%, #1E0E10 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(180,120,60,0.04) 60px, rgba(180,120,60,0.04) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(180,120,60,0.04) 60px, rgba(180,120,60,0.04) 61px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,10,12,0.7) 40%, transparent 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 120px 32px 80px;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.4s;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.8s;
}

/* ── HERO LIGHTHOUSE (animated) ──────────────── */
.hero-lighthouse {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.lighthouse-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lighthouse-logo-img {
  width: 90%;
  max-width: 640px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 3;
  animation: lighthouseFloat 6s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(180,120,60,0.25));
}

/* Glow pulse at the lamp */
.lighthouse-glow {
  position: absolute;
  top: 33%;
  left: 50%;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,220,100,0.8) 0%, rgba(255,180,60,0.4) 30%, transparent 70%);
  border-radius: 50%;
  z-index: 5;
  animation: glowPulse 2.5s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.9); }
  50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.3); }
}

@keyframes lighthouseFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

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

/* ── TRUST BAR ───────────────────────────────── */
.trust-bar {
  background: var(--maroon-deep);
  border-top: 1px solid rgba(180,120,60,0.3);
  border-bottom: 1px solid rgba(180,120,60,0.3);
  padding: 18px 32px;
}
.trust-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 4px 24px;
}
.trust-icon { color: var(--gold); font-size: 0.65rem; }
.trust-divider {
  width: 1px;
  height: 28px;
  background: rgba(180,120,60,0.3);
}

/* ── SERVICES ────────────────────────────────── */
.services {
  padding: 100px 0;
  background: var(--cream);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(107,31,42,0.1);
  border-top: 4px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), border-top-color var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--maroon);
}
.service-card.featured {
  border-top-color: var(--gold);
}
.service-card.featured:hover {
  border-top-color: var(--maroon);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1;
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--grey);
  line-height: 1.75;
}

/* ── WHO WE SERVE ────────────────────────────── */
.who-we-serve {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.wws-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--maroon-deep) 0%, var(--maroon) 60%, #7A2030 100%);
  z-index: 0;
}
.wws-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(180,120,60,0.15) 0%, transparent 60%);
}

.wws-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.wws-list {
  margin-bottom: 40px;
}
.wws-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: rgba(255,255,255,0.88);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  line-height: 1.6;
}
.wws-list li:last-child { border-bottom: none; }
.wws-check { color: var(--gold-light); font-size: 0.75rem; margin-top: 4px; flex-shrink: 0; }

.wws-quote-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wws-quote {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(180,120,60,0.3);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
}
.quote-mark {
  font-family: var(--font-serif);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 0.5;
  position: absolute;
  top: 24px;
  left: 28px;
}
.wws-quote p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  margin-bottom: 20px;
}
.wws-quote cite {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-style: normal;
}

/* ── ABOUT ───────────────────────────────────── */
.about {
  padding: 100px 0;
  background: var(--grey-pale);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  max-width: 380px;
  background: linear-gradient(135deg, var(--grey-card) 0%, #D8D0D0 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.about-img-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-inner span {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--grey);
  text-align: center;
  line-height: 1.8;
  font-style: italic;
}
.about-accent-block {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--maroon);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.5;
}

.about-bio {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-credentials {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--white);
  border: 1px solid rgba(107,31,42,0.12);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  margin: 32px 0;
}
.cred-item {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cred-num {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--maroon);
}
.cred-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
}
.cred-divider {
  width: 1px;
  height: 48px;
  background: rgba(107,31,42,0.15);
}

.about-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── CONTACT ─────────────────────────────────── */
.contact {
  padding: 100px 0;
  background: var(--white);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.contact-details {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.ci-icon {
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  background: var(--grey-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 2px;
}
.ci-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}
.ci-value a { color: var(--maroon); }
.ci-value a:hover { color: var(--gold); }

/* ── Quote Form ──────────────────────────────── */
.quote-form-wrap {
  position: sticky;
  top: 100px;
}
.quote-form {
  background: var(--grey-pale);
  border: 1px solid rgba(107,31,42,0.1);
  border-top: 5px solid var(--maroon);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow);
}
.form-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-sub {
  font-size: 0.88rem;
  color: var(--grey);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid rgba(107,31,42,0.2);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--dark);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--maroon);
  box-shadow: 0 0 0 3px rgba(107,31,42,0.12);
}
.form-group textarea { resize: vertical; }

.form-success {
  background: #f0faf3;
  border: 1px solid #7dc99a;
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}
.success-icon {
  display: block;
  font-size: 1.8rem;
  color: #2e7d52;
  margin-bottom: 8px;
}

/* ── FOOTER ──────────────────────────────────── */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 72px 32px 48px;
}

.footer-logo-img {
  height: 120px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 2px 12px rgba(180,120,60,0.25));
}
.footer-tagline {
  font-style: italic;
  font-size: 0.88rem;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.footer-socials { display: flex; gap: 12px; flex-wrap: wrap; }

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links ul li,
.footer-services ul li {
  margin-bottom: 10px;
  font-size: 0.9rem;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.footer-contact a { color: var(--gold-light); }
.footer-contact a:hover { color: var(--cream); }
.footer-btn { margin-top: 16px; font-size: 0.78rem; padding: 10px 20px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 32px;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-credit a { color: var(--gold-light); }
.footer-credit a:hover { color: var(--cream); }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .wws-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 320px; margin: 0 auto; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-lighthouse { display: none; }
  .trust-inner { gap: 0; }
  .trust-divider { display: none; }
  .trust-item { padding: 6px 16px; }
}

@media (max-width: 640px) {
  .nav-links { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(26,10,12,0.98); flex-direction: column; align-items: center; justify-content: center; gap: 24px; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; padding: 10px 20px; }
  .hamburger { display: flex; position: relative; z-index: 1000; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 32px 32px; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
  .about-credentials { padding: 16px; }
  .wws-quote { padding: 36px 28px; }
  .quote-form { padding: 28px 20px; }
  .container { padding: 0 20px; }
  .about-accent-block { display: none; }
}

/* ── STORY / DAD SECTION ─────────────────────── */
.story {
  padding: 100px 0;
  background: var(--white);
}
.story-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: start;
}
.story-body {
  font-size: 1.02rem;
  color: var(--grey);
  line-height: 1.85;
  margin-bottom: 20px;
}
.story-body strong {
  color: var(--maroon);
  font-weight: 700;
}

/* Promise block */
.story-promise {
  background: var(--grey-pale);
  border-left: 4px solid var(--maroon);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 28px 28px 28px 32px;
  margin: 32px 0;
}
.promise-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
.promise-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.promise-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.6;
}
.promise-check {
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 5px;
  flex-shrink: 0;
}

/* Video */
.story-video-wrap {
  margin-top: 32px;
}
.story-video {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
  background: var(--charcoal);
}
.video-caption {
  font-size: 0.82rem;
  color: var(--grey-light);
  font-style: italic;
  text-align: center;
  margin-top: 8px;
}

/* ── CAROUSEL ────────────────────────────────── */
.story-carousel-wrap {
  position: sticky;
  top: 100px;
}
.carousel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--charcoal);
  aspect-ratio: 1/1;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}
.carousel-slide {
  min-width: 100%;
  height: 100%;
  overflow: hidden;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26,10,12,0.7);
  border: 1px solid rgba(180,120,60,0.4);
  color: var(--cream);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
  z-index: 10;
  backdrop-filter: blur(4px);
}
.carousel-btn:hover {
  background: var(--maroon);
  border-color: var(--gold);
}
.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }
.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  border: none;
}
.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* Quote under carousel */
.carousel-quote {
  background: var(--maroon-deep);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 24px 28px 20px;
  position: relative;
}
.cq-mark {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 0.5;
  position: absolute;
  top: 14px;
  left: 16px;
}
.carousel-quote p {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: 8px;
  padding-left: 20px;
}
.carousel-quote cite {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-style: normal;
  padding-left: 20px;
}

/* ── SERVICE LIST inside cards ───────────────── */
.service-list {
  list-style: none;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-list li {
  font-size: 0.88rem;
  color: var(--grey);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}

/* ── RESPONSIVE additions ─────────────────────── */
@media (max-width: 960px) {
  .story-inner { grid-template-columns: 1fr; gap: 48px; }
  .story-carousel-wrap { position: static; }
  .carousel { aspect-ratio: 4/3; }
}
@media (max-width: 640px) {
  .carousel { aspect-ratio: 1/1; }
  .story-promise { padding: 20px; }
}

/* ── TPMO DISCLAIMER ─────────────────────────── */
.tpmo-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--grey-pale);
  border: 1px solid rgba(107,31,42,0.15);
  border-left: 4px solid var(--maroon);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-top: 40px;
}
.tpmo-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.tpmo-disclaimer p {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.7;
  margin: 0;
}
.tpmo-disclaimer a { color: var(--maroon); font-weight: 700; }
.tpmo-disclaimer a:hover { color: var(--gold); }
.tpmo-disclaimer strong { color: var(--dark); }

/* ── FOOTER LEGAL LINKS ──────────────────────── */
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-legal-links a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-legal-links a:hover { color: var(--gold-light); }

/* ── LEGAL PAGES (privacy, terms, fraud) ────── */
.legal-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 120px 32px 80px;
}
.legal-page h1 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.legal-page .legal-date {
  font-size: 0.82rem;
  color: var(--grey-light);
  margin-bottom: 40px;
  display: block;
}
.legal-page h2 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--maroon);
  margin: 32px 0 10px;
}
.legal-page p, .legal-page li {
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-page ul { padding-left: 20px; }
.legal-page a { color: var(--maroon); }

/* ── SOCIAL LINKS ────────────────────────────── */
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--maroon);
  background: var(--grey-pale);
  border: 1px solid rgba(107,31,42,0.2);
  border-radius: var(--radius);
  padding: 10px 16px;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.social-link:hover {
  background: var(--maroon);
  color: var(--cream);
  border-color: var(--maroon);
}
.social-link.light {
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}
.social-link.light:hover {
  background: var(--gold);
  color: var(--cream);
  border-color: var(--gold);
}

/* ── ABOUT VIDEO WRAP ────────────────────────── */
.about-video-wrap {
  width: 100%;
  max-width: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(30,10,10,0.25);
}

/* ── ABOUT REEL LINK ─────────────────────────── */
.about-reel-link { display: block; text-decoration: none; }
.about-reel-thumb {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--maroon-deep) 0%, var(--maroon) 60%, #7A2030 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.about-reel-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(180,120,60,0.2) 0%, transparent 70%);
}
.about-reel-link:hover .about-reel-thumb {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(30,10,10,0.35);
}
.about-reel-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 32px;
}
.reel-play-btn {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.15);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  margin: 0 auto 20px;
  transition: background var(--transition);
}
.about-reel-link:hover .reel-play-btn {
  background: var(--gold);
  color: var(--cream);
}
.reel-label {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
  line-height: 1.4;
}
.reel-sub {
  font-size: 0.82rem;
  color: var(--gold-light);
  font-style: italic;
}

/* ── ABOUT PHOTOS ────────────────────────────── */
.about-photos {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about-photo-frame {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.about-photo-frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
  background: var(--grey-card);
  min-height: 200px;
}
.about-photo-frame.grandmother img {
  border: 3px solid var(--gold);
}
.about-photo-frame.shelby img {
  border: 3px solid var(--maroon);
}
.photo-caption {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-style: italic;
  color: var(--grey);
  text-align: center;
}

/* ── ABOUT PLEDGE ────────────────────────────── */
.about-pledge {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--maroon);
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  margin: 8px 0 24px !important;
}

/* ── FORM CHECKBOX ───────────────────────────── */
.form-checkbox-group { margin-top: 8px; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.82rem !important;
  color: var(--dark) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-weight: 400 !important;
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--maroon);
  cursor: pointer;
}

/* ── PTC DISCLOSURE ──────────────────────────── */
.ptc-disclosure {
  background: var(--grey-pale);
  border: 1px solid rgba(107,31,42,0.12);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin: 12px 0 16px;
}
.ptc-disclosure p {
  font-size: 0.75rem;
  color: var(--grey);
  line-height: 1.6;
  margin: 0;
}

/* ── FOOTER COMPLIANCE ───────────────────────── */
.footer-compliance {
  text-align: center;
  padding: 12px 0 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 12px;
}
.footer-compliance p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

/* ── TRIBUTE / IN LOVING MEMORY ─────────────── */
.tribute {
  padding: 100px 0;
  background: var(--grey-pale);
}
.tribute-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.tribute-body {
  font-size: 1.02rem;
  color: var(--grey);
  line-height: 1.85;
  margin-bottom: 20px;
}
.tribute-body strong {
  color: var(--maroon);
  font-weight: 700;
}
.tribute-signature {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--maroon);
  margin-top: 8px;
}
.tribute-carousel-wrap {
  position: sticky;
  top: 100px;
}

@media (max-width: 960px) {
  .tribute-inner { grid-template-columns: 1fr; gap: 48px; }
  .tribute-carousel-wrap { position: static; }
}

.hero-eyebrow-sub {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.3s;
}
