/* ============================================
   SKUA VEC LLC — Classic Light Theme
   ============================================ */

:root {
  --color-navy: #1B3A5C;
  --color-navy-dark: #142D47;
  --color-navy-light: #2A5280;
  --color-gold: #C9A962;
  --color-gold-light: #D4BC82;
  --color-cream: #FAF8F5;
  --color-cream-dark: #F0EBE3;
  --color-warm: #F5F0E8;
  --color-white: #FFFFFF;
  --color-text: #2C3E50;
  --color-text-muted: #5A6B7D;
  --color-border: #E8E2D9;

  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-sm: 0 2px 8px rgba(27, 58, 92, 0.06);
  --shadow-md: 0 8px 30px rgba(27, 58, 92, 0.1);
  --shadow-lg: 0 20px 60px rgba(27, 58, 92, 0.14);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --header-height: 80px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 800px;
}

.text-center { text-align: center; }

/* Scroll Progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-navy));
  z-index: 1000;
  width: 0%;
  transition: width 0.1s linear;
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header-height);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.header.scrolled {
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

/* Light nav text over dark hero background */
.header:not(.scrolled) .nav__logo {
  color: var(--color-white);
}

.header:not(.scrolled) .nav__logo-llc {
  color: var(--color-gold-light);
}

.header:not(.scrolled) .nav__link {
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.header:not(.scrolled) .nav__link:hover,
.header:not(.scrolled) .nav__link.active {
  color: var(--color-white);
}

.header:not(.scrolled) .nav__toggle span {
  background: var(--color-white);
}

.header:not(.scrolled) .nav__link--cta {
  background: var(--color-gold);
  color: var(--color-navy-dark) !important;
  text-shadow: none;
}

.header:not(.scrolled) .nav__link--cta:hover {
  background: var(--color-gold-light);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-navy);
  letter-spacing: 0.02em;
}

.nav__logo-llc {
  font-weight: 400;
  color: var(--color-gold);
  font-size: 0.85em;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition), left var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-navy);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 60%;
  left: 20%;
}

.nav__link--cta {
  background: var(--color-navy);
  color: var(--color-white) !important;
  margin-left: 8px;
  border-radius: var(--radius-md);
}

.nav__link--cta::after { display: none; }

.nav__link--cta:hover {
  background: var(--color-navy-dark);
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  transition: transform var(--transition), opacity var(--transition);
}

.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);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn--primary {
  background: var(--color-gold);
  color: var(--color-navy-dark);
  border-color: var(--color-gold);
}

.btn--primary:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 169, 98, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1.15); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 58, 92, 0.88) 0%,
    rgba(27, 58, 92, 0.65) 50%,
    rgba(27, 58, 92, 0.78) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-height) + 60px) 24px 80px;
  max-width: 800px;
  color: var(--color-white);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero__title em {
  font-style: italic;
  color: var(--color-gold);
}

.hero__subtitle {
  font-size: 1.15rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 600px;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__stat-number,
.hero__stat-text {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-gold);
  line-height: 1.2;
}

.hero__stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--color-gold);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* ============================================
   Sections
   ============================================ */
.section {
  padding: 100px 0;
  position: relative;
}

.section--cream { background: var(--color-cream); }
.section--warm { background: var(--color-warm); }

.section--navy {
  background: var(--color-navy);
  color: var(--color-white);
}

.section__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.section__label--light { color: var(--color-gold-light); }

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-navy);
  margin-bottom: 20px;
}

.section__title--light { color: var(--color-white); }

.section__title em {
  font-style: italic;
  color: var(--color-gold);
}

.section__lead {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  line-height: 1.8;
}

.section__lead--light {
  color: rgba(255, 255, 255, 0.8);
}

.section__header {
  margin-bottom: 60px;
}

.section__header .section__lead {
  margin: 0 auto;
}

.section__closing {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Ornament */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 24px 0 32px;
}

.ornament span {
  width: 60px;
  height: 1px;
  background: var(--color-gold);
}

.ornament__diamond {
  width: 8px !important;
  height: 8px !important;
  background: var(--color-gold) !important;
  transform: rotate(45deg);
}

/* Prose */
.prose p {
  margin-bottom: 1.2em;
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.prose p:last-child { margin-bottom: 0; }

.prose--center p { text-align: center; }

/* Split Layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split--reverse .split__content { order: 2; }
.split--reverse .split__media { order: 1; }

/* Image Frames */
.image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.image-frame img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.image-frame:hover img {
  transform: scale(1.05);
}

.image-frame--gold::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: 8px;
  bottom: 8px;
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.image-frame--offset {
  margin-bottom: -60px;
  margin-right: 60px;
}

.image-frame--small {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.image-frame--small img {
  height: 200px;
}

.split__media {
  position: relative;
}

/* Floating Card */
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-navy);
  animation: float 4s ease-in-out infinite;
}

.floating-card svg {
  color: var(--color-gold);
  flex-shrink: 0;
}

.floating-card--1 {
  bottom: -20px;
  left: -20px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Values Strip */
.values-strip {
  margin-top: 80px;
  padding: 60px 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.values-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.value-item {
  text-align: center;
  padding: 20px;
}

.value-item__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-warm);
  border-radius: 50%;
  color: var(--color-navy);
  transition: transform var(--transition), background var(--transition);
}

.value-item__icon svg {
  width: 28px;
  height: 28px;
}

.value-item:hover .value-item__icon {
  transform: scale(1.1);
  background: var(--color-gold);
  color: var(--color-white);
}

.value-item h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.value-item p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* Questions Grid */
.questions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.question-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.question-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-gold);
}

.question-card__num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 12px;
  opacity: 0.7;
}

.question-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

/* Pullquote */
.pullquote {
  margin-top: 32px;
  padding: 24px 32px;
  border-left: 3px solid var(--color-gold);
  background: var(--color-white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-sm);
}

.pullquote p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-navy);
  line-height: 1.6;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card__image img {
  transform: scale(1.08);
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 58, 92, 0.5), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover .service-card__overlay {
  opacity: 1;
}

.service-card__body {
  padding: 28px;
  position: relative;
}

.service-card__icon {
  position: absolute;
  top: -24px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}

.service-card__icon svg {
  width: 22px;
  height: 22px;
}

.service-card:hover .service-card__icon {
  transform: scale(1.15) rotate(10deg);
}

.service-card__body h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--color-navy);
  margin-bottom: 12px;
  padding-right: 40px;
}

.service-card__body p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Deliverables */
.deliverables-list {
  margin-top: 32px;
}

.deliverables-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 1rem;
  color: var(--color-text);
  transition: padding-left var(--transition);
}

.deliverables-list li:hover {
  padding-left: 8px;
}

.deliverables-list__icon {
  width: 28px;
  height: 28px;
  background: var(--color-warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition);
}

.deliverables-list__icon svg {
  width: 14px;
  height: 14px;
}

.deliverables-list li:hover .deliverables-list__icon {
  background: var(--color-gold);
  color: var(--color-white);
}

.deliverables-visual {
  position: relative;
  height: 420px;
}

.deliverables-visual__card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.deliverables-visual__card--1 {
  top: 0;
  left: 0;
  width: 75%;
  background: var(--color-white);
  padding: 28px;
  z-index: 2;
  animation: float 5s ease-in-out infinite;
}

.deliverables-visual__header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.deliverables-visual__dot {
  width: 10px;
  height: 10px;
  background: #4CAF50;
  border-radius: 50%;
}

.deliverables-visual__lines span {
  display: block;
  height: 8px;
  background: var(--color-cream-dark);
  border-radius: 4px;
  margin-bottom: 10px;
  animation: shimmer 2s ease-in-out infinite;
}

.deliverables-visual__lines span:nth-child(2) { animation-delay: 0.2s; }
.deliverables-visual__lines span:nth-child(3) { animation-delay: 0.4s; }
.deliverables-visual__lines span:nth-child(4) { animation-delay: 0.6s; }

@keyframes shimmer {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.deliverables-visual__status {
  margin-top: 20px;
  padding: 8px 16px;
  background: rgba(76, 175, 80, 0.1);
  color: #2E7D32;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
}

.deliverables-visual__card--2 {
  bottom: 0;
  right: 0;
  width: 65%;
  height: 250px;
  z-index: 1;
}

.deliverables-visual__card--2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Independence Badges */
.independence-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.badge {
  padding: 10px 24px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-navy);
  transition: all var(--transition);
}

.badge:hover {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
  transform: translateY(-2px);
}

/* Personal Banner */
.personal-banner {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 60px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.personal-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-gold), var(--color-navy));
}

.personal-banner__content {
  max-width: 800px;
}

.personal-banner p {
  color: var(--color-text-muted);
  margin-bottom: 1em;
  font-size: 1.05rem;
}

/* Contact */
.section--contact {
  background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy) 100%);
  color: var(--color-white);
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-info__lead {
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.85;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-detail {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-detail__icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gold);
}

.contact-detail__icon svg {
  width: 24px;
  height: 24px;
}

.contact-detail strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.contact-detail p {
  opacity: 0.75;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-detail a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-detail a:hover {
  color: var(--color-gold);
}

.contact-visual__map {
  position: relative;
  width: 100%;
  aspect-ratio: 480 / 400;
  background: #1B3A5C;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.contact-visual__svg {
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  vertical-align: top;
  animation: mapFadeIn 1.2s ease-out;
}

@keyframes mapFadeIn {
  from { opacity: 0; transform: scale(1.03); }
  to { opacity: 1; transform: scale(1); }
}

/* Footer */
.footer {
  background: var(--color-navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer__brand strong {
  color: var(--color-white);
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
}

.footer__brand p {
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 0.85rem;
}

.footer__contact a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__contact a:hover {
  color: var(--color-gold);
}

.footer__copy {
  font-size: 0.85rem;
}

/* ============================================
   Scroll Reveal Animations
   ============================================ */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: translate(0);
}

.reveal-up[data-delay="1"] { transition-delay: 0.1s; }
.reveal-up[data-delay="2"] { transition-delay: 0.2s; }
.reveal-up[data-delay="3"] { transition-delay: 0.3s; }
.reveal-up[data-delay="4"] { transition-delay: 0.4s; }
.reveal-up[data-delay="5"] { transition-delay: 0.5s; }
.reveal-up[data-delay="6"] { transition-delay: 0.6s; }
.reveal-up[data-delay="7"] { transition-delay: 0.7s; }
.reveal-up[data-delay="8"] { transition-delay: 0.8s; }

.reveal-left[data-delay="1"],
.reveal-right[data-delay="1"] { transition-delay: 0.15s; }
.reveal-left[data-delay="2"],
.reveal-right[data-delay="2"] { transition-delay: 0.3s; }
.reveal-left[data-delay="3"],
.reveal-right[data-delay="3"] { transition-delay: 0.45s; }

/* Hero initial animation */
.hero .reveal-up {
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero .reveal-up[data-delay="1"] { animation-delay: 0.2s; }
.hero .reveal-up[data-delay="2"] { animation-delay: 0.4s; }
.hero .reveal-up[data-delay="3"] { animation-delay: 0.6s; }
.hero .reveal-up[data-delay="4"] { animation-delay: 0.8s; }

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split--reverse .split__content,
  .split--reverse .split__media {
    order: unset;
  }

  .questions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-strip__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .image-frame--offset {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .image-frame--small {
    position: relative;
    width: 100%;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .nav__toggle { display: flex; }

  .nav__menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-cream);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
  }

  .nav__menu.open {
    transform: translateY(0);
    opacity: 1;
  }

  .header:not(.scrolled) .nav__menu.open .nav__link {
    color: var(--color-text-muted);
    text-shadow: none;
  }

  .header:not(.scrolled) .nav__menu.open .nav__link:hover,
  .header:not(.scrolled) .nav__menu.open .nav__link.active {
    color: var(--color-navy);
  }

  .nav__link {
    width: 100%;
    text-align: center;
    padding: 14px;
  }

  .nav__link--cta {
    margin-left: 0;
    margin-top: 8px;
  }

  .hero__stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .hero__stat-divider {
    width: 40px;
    height: 1px;
  }

  .services-grid,
  .questions-grid {
    grid-template-columns: 1fr;
  }

  .section { padding: 70px 0; }

  .personal-banner { padding: 36px; }

  .deliverables-visual {
    height: 350px;
    margin-top: 40px;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__brand {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .floating-card--1 {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 20px;
  }
}

/* Reduced motion */
@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; }

  .reveal-up,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
}
