/* ==========================================================================
   Empire Insurance Group — Design System
   ========================================================================== */

:root {
  /* Colors — warm trust */
  --ink: #0F1B2D;           /* deep navy, primary text & dark surfaces */
  --ink-soft: #1F2D44;
  --cream: #F7F2E8;         /* warm off-white background */
  --cream-deep: #EFE6D2;
  --paper: #FBF8F2;
  --gold: #B8884B;          /* warm accent */
  --gold-deep: #8C6432;
  --rust: #B65335;          /* secondary accent for callouts */
  --line: #D9CFB8;          /* hairline borders */
  --muted: #5C6679;

  /* Type */
  --serif: 'Fraunces', 'Georgia', serif;
  --sans: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max: 1240px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 4px;
  --radius-lg: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'cv11';
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ==========================================================================
   Typography
   ========================================================================== */

.display, .display-md {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.02;
}

.display {
  font-size: clamp(2.75rem, 6.5vw, 5.25rem);
  font-variation-settings: 'opsz' 96, 'SOFT' 30;
}

.display-md {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.05;
  font-variation-settings: 'opsz' 72, 'SOFT' 40;
}

.display em, .display-md em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 80;
}

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 36ch;
}

.eyebrow, .section-eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.section-eyebrow { margin-bottom: 1rem; display: block; }

.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn-sm { padding: 0.6rem 1rem; font-size: 0.875rem; }
.btn-lg { padding: 1.05rem 1.85rem; font-size: 1rem; }

.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -10px rgba(15, 27, 45, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn-outline:hover { background: var(--cream); color: var(--ink); }

.link-arrow {
  color: var(--gold-deep);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s ease;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.link-arrow:hover { gap: 0.7rem; }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 242, 232, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(217, 207, 184, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
  gap: 2rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.015em;
  color: var(--ink);
  white-space: nowrap;
}

.logo-text {
  font-variation-settings: 'opsz' 96;
}

.logo-mark-img {
  height: 40px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

@media (max-width: 540px) {
  .logo-text { font-size: 0.95rem; }
  .logo-mark-img { height: 34px; }
}

.nav-main {
  display: flex;
  gap: 2rem;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-main a { position: relative; transition: color 0.2s ease; }
.nav-main a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-main a:hover { color: var(--gold-deep); }
.nav-main a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle at center, rgba(184, 136, 75, 0.12), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.hero-copy > * + * { margin-top: 1.5rem; }
.hero-copy .eyebrow { margin-bottom: 0; }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-microcopy {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 0.75rem !important;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  margin-top: 2.5rem !important;
  font-size: 0.9rem;
  color: var(--ink-soft);
  flex-wrap: wrap;
}
.hero-trust strong { color: var(--ink); font-weight: 700; }

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink-soft);
  transition: color 0.2s ease, transform 0.2s ease;
}
a.trust-item { cursor: pointer; }
a.trust-item:hover { color: var(--ink); transform: translateY(-1px); }
.trust-item small { font-size: 0.75rem; color: var(--muted); }

.trust-divider {
  width: 1px;
  height: 28px;
  background: var(--line);
}

.bbb-mark {
  display: inline-flex;
  align-items: stretch;
  border-radius: 3px;
  overflow: hidden;
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: 0.05em;
  font-size: 0.7rem;
  line-height: 1;
  box-shadow: 0 2px 6px -2px rgba(15, 27, 45, 0.25);
}
.bbb-mark-text {
  background: #00558C;
  color: #fff;
  padding: 0.5rem 0.55rem;
  letter-spacing: 0.08em;
}
.bbb-mark-grade {
  background: #fff;
  color: #00558C;
  padding: 0.5rem 0.55rem;
  border: 1px solid #00558C;
  border-left: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  font-weight: 700;
  font-variation-settings: 'opsz' 144;
}

.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold);
}
.stars svg { width: 16px; height: 16px; }

/* Hero photo */
.hero-visual { position: relative; }

.hero-photo-frame {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 480px;
  margin-left: auto;
}

.hero-photo-frame-inner {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -25px rgba(15, 27, 45, 0.35);
  position: relative;
}

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

.photo-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
  opacity: 0.6;
  position: relative;
  z-index: 1;
}

.hero-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--ink);
  color: var(--cream);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px -15px rgba(15, 27, 45, 0.35);
  max-width: 240px;
}
.hero-badge-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 500;
  color: var(--gold);
  font-variation-settings: 'opsz' 144;
}
.hero-badge-num span {
  font-size: 0.95rem;
  color: rgba(247, 242, 232, 0.6);
  font-family: var(--sans);
  font-weight: 500;
  margin-left: 2px;
}
.hero-badge-text {
  font-size: 0.85rem;
  margin-top: 0.5rem;
  line-height: 1.4;
  color: rgba(247, 242, 232, 0.85);
}
.hero-badge-text em {
  display: block;
  margin-top: 0.25rem;
  color: rgba(247, 242, 232, 0.5);
  font-style: italic;
  font-size: 0.75rem;
}

/* Carriers strip — revolving marquee */
.hero-carriers {
  background: var(--paper);
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.carriers-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
  text-align: center;
}
.carriers-count {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-deep);
  font-variation-settings: 'opsz' 144;
  letter-spacing: -0.02em;
  margin-right: 0.2rem;
  vertical-align: -1px;
}

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee 60s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.carrier-logo {
  flex: 0 0 auto;
  height: 64px;
  min-width: 160px;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
  font-variation-settings: 'opsz' 96;
  position: relative;
}

.carrier-logo:hover {
  color: var(--ink);
  border-color: var(--gold);
  background: var(--paper);
  transform: translateY(-2px);
}

/* When real logo images are added, the text becomes the alt label and image fills the slot */
.carrier-logo img {
  max-height: 38px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.75);
  transition: filter 0.3s ease;
}
.carrier-logo:hover img { filter: grayscale(0%) opacity(1); }
.carrier-logo:has(img) { color: transparent; font-size: 0; }

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ==========================================================================
   Sections
   ========================================================================== */

section { padding: clamp(4rem, 8vw, 7rem) 0; }

.section-header { margin-bottom: clamp(2.5rem, 5vw, 4rem); max-width: 720px; }
.section-header.center { text-align: center; margin-left: auto; margin-right: auto; }

/* Why */
.why-section { background: var(--paper); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why-card {
  background: var(--paper);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  transition: background 0.3s ease;
}
.why-card:hover { background: var(--cream); }

.why-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold-deep);
  margin-bottom: 1.25rem;
  font-variation-settings: 'opsz' 144;
}
.why-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.why-card p { color: var(--ink-soft); font-size: 0.97rem; }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(15, 27, 45, 0.15);
  border-color: var(--gold);
}

.service-icon {
  width: 48px; height: 48px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.service-icon svg { width: 22px; height: 22px; }

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.service-card > p {
  color: var(--ink-soft);
  font-size: 0.97rem;
  margin-bottom: 1.25rem;
}

.service-features {
  list-style: none;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.service-features li {
  padding: 0.35rem 0;
  font-size: 0.875rem;
  color: var(--ink-soft);
  position: relative;
  padding-left: 1.25rem;
}
.service-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.85rem;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.service-card-cta {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-card-cta h3 { color: var(--cream); }
.service-card-cta p { color: rgba(247, 242, 232, 0.8); }
.service-card-cta .link-arrow { color: var(--gold); border-color: var(--gold); }
.service-card-cta:hover { border-color: var(--gold); }

/* About */
.about-section {
  background:
    linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-visual { position: relative; }

.about-photo-img-wrap {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(15, 27, 45, 0.3);
}
.about-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-signature {
  margin-top: 1.5rem;
  padding-left: 0.5rem;
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
}
.sig-line {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--ink);
  font-variation-settings: 'opsz' 144;
}
.sig-title {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.about-body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
  max-width: 56ch;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.stat-num {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  font-variation-settings: 'opsz' 144;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.4rem;
  letter-spacing: 0.05em;
}

/* Reviews */
.reviews-section { background: var(--ink); color: var(--cream); }
.reviews-section .section-eyebrow { color: var(--gold); }
.reviews-section .display-md { color: var(--cream); }
.reviews-section .display-md em { color: var(--gold); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.review-card {
  background: rgba(247, 242, 232, 0.04);
  border: 1px solid rgba(247, 242, 232, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  font-style: normal;
  transition: background 0.3s ease, transform 0.3s ease;
}
.review-card:hover {
  background: rgba(247, 242, 232, 0.06);
  transform: translateY(-2px);
}

.review-card-feature {
  background: var(--gold-deep);
  border-color: var(--gold);
  grid-column: span 1;
}
.review-card-feature:hover { background: var(--gold-deep); }

.review-stars {
  color: var(--gold);
  letter-spacing: 0.1em;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.review-card p {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.55;
  font-weight: 400;
  margin-bottom: 1rem;
  font-style: italic;
  font-variation-settings: 'opsz' 96, 'SOFT' 50;
}

.review-card footer {
  font-size: 0.8rem;
  color: rgba(247, 242, 232, 0.5);
  letter-spacing: 0.05em;
  font-style: normal;
}

.reviews-cta { text-align: center; }
.reviews-cta .link-arrow { color: var(--gold); border-color: var(--gold); }

/* FAQ */
.faq-section { background: var(--paper); }

.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.faq-help {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.faq-help a { color: var(--gold-deep); border-bottom: 1px solid currentColor; }

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 0;
}
.faq-item:first-child { border-top: 1px solid var(--line); }

.faq-item summary {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold-deep);
  transition: transform 0.3s ease;
}
.faq-item[open] summary { color: var(--gold-deep); }
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  margin-top: 0.75rem;
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 0.97rem;
}
.faq-item a { color: var(--gold-deep); border-bottom: 1px solid currentColor; }

/* Final CTA */
.final-cta {
  background:
    radial-gradient(circle at 80% 20%, rgba(184, 136, 75, 0.18), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(182, 83, 53, 0.12), transparent 50%),
    var(--ink);
  color: var(--cream);
  text-align: center;
}

.final-cta-inner { max-width: 720px; margin: 0 auto; }
.final-cta .display-md { color: var(--cream); }
.final-cta .display-md em { color: var(--gold); }
.final-cta p {
  font-size: 1.1rem;
  color: rgba(247, 242, 232, 0.7);
  margin: 1.25rem 0 2.25rem;
}

.final-cta-buttons {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.final-cta .btn-primary { background: var(--gold); color: var(--ink); }
.final-cta .btn-primary:hover { background: var(--cream); color: var(--ink); }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--ink);
  color: rgba(247, 242, 232, 0.65);
  padding-top: 4rem;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(247, 242, 232, 0.1);
}

.footer-brand .logo { color: var(--cream); margin-bottom: 1rem; }
.footer-brand p { max-width: 30ch; line-height: 1.55; }

.footer-col h4 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.footer-col a { display: block; padding: 0.3rem 0; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-col p { line-height: 1.6; margin-bottom: 0.75rem; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.825rem;
  color: rgba(247, 242, 232, 0.4);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom-info p { margin: 0.15rem 0; }
.license-line {
  font-size: 0.75rem;
  color: rgba(247, 242, 232, 0.35);
}
.license-line a {
  color: rgba(247, 242, 232, 0.55);
  border-bottom: 1px solid rgba(247, 242, 232, 0.15);
  transition: color 0.2s ease;
}
.license-line a:hover { color: var(--gold); }

.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a:hover { color: var(--gold); }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 920px) {
  .hero-grid, .about-grid, .faq-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual { max-width: 420px; margin: 0 auto; order: -1; }
  .hero-photo-frame { margin: 0 auto; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-main {
    position: fixed;
    inset: 64px 0 0 0;
    width: 100%;
    height: calc(100vh - 64px);
    background: var(--cream);
    flex-direction: column;
    padding: 2rem var(--gutter);
    gap: 1.25rem;
    align-items: flex-start;
    transform: translateY(-110%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid var(--line);
    z-index: 49;
    visibility: hidden;
  }
  .nav-main.open { transform: translateY(0); visibility: visible; }
  .nav-main a { font-size: 1.5rem; font-family: var(--serif); }
  .nav-toggle { display: flex; }
  .header-inner .btn { display: none; }

  .hero-badge {
    bottom: -16px;
    left: 0;
    padding: 1rem 1.15rem;
  }
  .hero-badge-num { font-size: 2rem; }

  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
  .stat-num { font-size: 1.75rem; }
  .stat-label { font-size: 0.7rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   Reveal Animations
   ========================================================================== */

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * {
    animation: fadeUp 0.8s ease backwards;
  }
  .hero-copy > *:nth-child(1) { animation-delay: 0.1s; }
  .hero-copy > *:nth-child(2) { animation-delay: 0.2s; }
  .hero-copy > *:nth-child(3) { animation-delay: 0.3s; }
  .hero-copy > *:nth-child(4) { animation-delay: 0.4s; }
  .hero-copy > *:nth-child(5) { animation-delay: 0.5s; }
  .hero-copy > *:nth-child(6) { animation-delay: 0.6s; }

  .hero-visual { animation: fadeUp 1s ease 0.4s backwards; }

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