/* RutherfordMade — Global Styles v1.0 */
/* Brand: Navy + Orange luxury pool & outdoor living */

/* ─── Custom Properties ─── */
:root {
  /* Brand Colors (per BVC §1B — CSS-extracted from live site, canonical) */
  --c-navy: #3f537c;
  --c-navy-medium: #395488;
  --c-navy-light: #506A9E;
  --c-navy-dark: #000321;
  --c-orange: #FF9A36;
  --c-orange-deep: #F28D28;
  --c-amber: #D88F29;
  --c-orange-soft: #F6A350;
  --c-link: #2a81c3;

  /* Neutrals */
  --c-text: #4a4a4a;
  --c-text-secondary: #707070;
  --c-text-muted: #8893A8;
  --c-bg: #FFFFFF;
  --c-bg-alt: #F6F6F6;
  --c-bg-divider: #EDEDED;

  /* Semantic aliases */
  --c-primary: var(--c-navy);
  --c-accent: var(--c-orange);
  --c-accent-hover: var(--c-orange-deep);
  --c-accent-warm: var(--c-amber);

  /* Type */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', system-ui, -apple-system, sans-serif;

  /* Motion */
  --ease-enter: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-hover: cubic-bezier(0.4, 0, 0.2, 1);

  /* Scale */
  --radius-sm: 0.375rem;
  --radius: 0.625rem;
  --radius-lg: 1rem;
  --shadow-sm: 0 1px 3px rgba(63, 83, 124, 0.08), 0 1px 2px rgba(63, 83, 124, 0.04);
  --shadow: 0 4px 16px rgba(63, 83, 124, 0.10), 0 2px 4px rgba(63, 83, 124, 0.06);
  --shadow-lg: 0 16px 40px rgba(63, 83, 124, 0.14), 0 6px 12px rgba(63, 83, 124, 0.08);
  --container: 1280px;
}

/* ─── Base Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
@media (min-width: 768px) { html { font-size: 18px; } }
body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.15;
  color: var(--c-navy-dark);
  letter-spacing: -0.01em;
}
/* Hero H1 ONLY uses display serif — luxury signal */
.hero-h1, h1.hero-h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
h1 { font-size: clamp(36px, 6vw, 64px); }
h2 { font-size: clamp(28px, 4vw, 48px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
h4 { font-size: clamp(17px, 1.5vw, 20px); font-weight: 600; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; color: var(--c-navy-dark); }

.label-caps {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--c-orange);
}

.eyebrow {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: rgba(255, 154, 54, 0.12);
  color: var(--c-orange-deep);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

/* ─── Skip to Content ─── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.5rem;
  background: var(--c-orange);
  color: var(--c-navy-dark);
  border-radius: var(--radius);
  font-weight: 700;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ─── Navigation ─── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: padding 0.3s var(--ease-hover), box-shadow 0.3s var(--ease-hover);
}
.site-nav.scrolled {
  box-shadow: 0 1px 0 rgba(63, 83, 124, 0.08), 0 2px 16px rgba(0, 0, 0, 0.04);
  padding: 0.625rem 0;
}
.nav-logo { max-height: 52px; width: auto; }
.nav-link {
  font-weight: 500;
  font-size: 15px;
  color: var(--c-navy-dark);
  transition: color 0.2s var(--ease-hover);
  position: relative;
}
.nav-link:hover, .nav-link:focus { color: var(--c-orange-deep); }
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 2px;
  background: var(--c-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease-hover);
}
.nav-link:hover::after, .nav-link:focus::after { transform: scaleX(1); }
.nav-phone {
  color: var(--c-text-secondary);
  font-weight: 500;
  font-size: 14px;
}
.nav-phone:hover { color: var(--c-navy); }

/* ─── Hamburger ─── */
.hamburger {
  width: 32px; height: 32px;
  position: relative;
  cursor: pointer;
  background: transparent;
}
.hamburger span {
  position: absolute;
  left: 4px;
  width: 24px;
  height: 2px;
  background: var(--c-navy-dark);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-hover), opacity 0.2s;
}
.hamburger span:nth-child(1) { top: 8px; }
.hamburger span:nth-child(2) { top: 15px; }
.hamburger span:nth-child(3) { top: 22px; }
.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); }

/* ─── Mobile Menu ─── */
.mobile-menu {
  position: fixed;
  inset: 64px 0 0 0;
  z-index: 999;
  background: var(--c-bg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transform: translateY(-110%);
  transition: transform 0.4s var(--ease-enter);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-size: 22px;
  font-weight: 600;
  color: var(--c-navy-dark);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--c-bg-divider);
}

/* ─── Buttons ─── */
.btn-primary, .btn-secondary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  transition: transform 0.2s var(--ease-hover), background 0.2s var(--ease-hover), box-shadow 0.2s var(--ease-hover);
  text-align: center;
}
.btn-primary {
  background: var(--c-orange);
  color: var(--c-navy-dark);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--c-orange-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-secondary {
  background: var(--c-navy);
  color: #fff;
}
.btn-secondary:hover { background: var(--c-navy-medium); }
.btn-ghost {
  background: transparent;
  color: var(--c-navy-dark);
  border: 1.5px solid var(--c-navy);
}
.btn-ghost:hover { background: var(--c-navy); color: #fff; }

/* ─── Sections ─── */
.section {
  padding: clamp(64px, 10vw, 120px) 0;
}
.section-tight { padding: clamp(48px, 7vw, 80px) 0; }
.section-alt { background: var(--c-bg-alt); }
.section-dark {
  background: var(--c-navy-dark);
  color: #fff;
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p { color: rgba(255, 255, 255, 0.85); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) { .container { padding: 0 2rem; } }

.section-header { text-align: center; max-width: 720px; margin: 0 auto 4rem; }
.section-header p { color: var(--c-text-secondary); font-size: 1.125rem; }

/* ─── Wow Typography (Editorial Resort aesthetic) ─── */
.wow-fill {
  color: inherit;
  display: inline-block;
}
.wow-stroke {
  color: transparent;
  -webkit-text-stroke: 1.5px currentColor;
  text-stroke: 1.5px currentColor;
  display: inline-block;
  font-style: italic;
}
.hero .wow-stroke { -webkit-text-stroke-color: #FFFFFF; }
.hero .wow-fill { color: #FFFFFF; }

/* Orchestrated hero reveal — one beautiful page-load moment */
.hero-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(36px);
  animation: hero-enter 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-reveal:nth-child(1) { animation-delay: 0.15s; }
.hero-reveal:nth-child(2) { animation-delay: 0.30s; }
.hero-reveal:nth-child(3) { animation-delay: 0.45s; }
.hero-reveal:nth-child(4) { animation-delay: 0.60s; }
.hero-reveal:nth-child(5) { animation-delay: 0.75s; }
.hero-reveal:nth-child(6) { animation-delay: 0.90s; }
.hero-reveal:nth-child(7) { animation-delay: 1.05s; }
.hero-reveal:nth-child(8) { animation-delay: 1.20s; }
@keyframes hero-enter {
  to { opacity: 1; transform: translateY(0); }
}

/* Editorial label — serial number / issue tag */
.serial {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-orange);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.serial::before, .serial::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

/* Editorial pull-quote — breaks between content blocks */
.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.25;
  color: var(--c-navy-dark);
  letter-spacing: -0.01em;
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) 1.5rem;
  text-align: center;
  position: relative;
}
.pull-quote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: clamp(100px, 12vw, 160px);
  color: var(--c-orange);
  opacity: 0.25;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  font-style: normal;
}
.pull-quote cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-text-secondary);
  margin-top: 1.5rem;
}

/* Editorial asymmetric service feature */
.editorial-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding: clamp(48px, 8vw, 120px) 0;
  border-bottom: 1px solid rgba(63, 83, 124, 0.1);
}
.editorial-feature:last-child { border-bottom: none; }
@media (min-width: 900px) {
  .editorial-feature { grid-template-columns: 1fr 1.15fr; gap: 5rem; }
  .editorial-feature.reverse { grid-template-columns: 1.15fr 1fr; }
  .editorial-feature.reverse .editorial-media { order: 2; }
  .editorial-feature.reverse .editorial-text { order: 1; }
}
.editorial-media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
}
.editorial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.editorial-feature:hover .editorial-media img { transform: scale(1.03); }
.editorial-caption {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(0, 3, 33, 0.6);
}
.editorial-number {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 96px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--c-orange);
  font-weight: 700;
  font-style: italic;
  display: block;
  margin-bottom: 1rem;
}
.editorial-text h3 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--c-navy-dark);
  letter-spacing: -0.01em;
}
.editorial-text .meta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 0.75rem;
}
.editorial-text p {
  font-size: 1.125rem;
  color: var(--c-text);
  line-height: 1.7;
  max-width: 520px;
}

/* Editorial band — warm ivory section for magazine rhythm */
.section-ivory {
  background: #F9F4E8;
}

/* Wordmark logo (text + icon composite) */
.logo-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}
.logo-wordmark-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}
.logo-wordmark-text {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: var(--c-navy-dark);
  letter-spacing: -0.005em;
  line-height: 1;
}
.logo-wordmark-text span {
  color: inherit;
  font-style: normal;
  font-weight: inherit;
}
.site-footer .logo-wordmark-text {
  color: #fff;
}
.site-footer .logo-wordmark-text span {
  color: inherit;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-navy-dark);
  color: #fff;
  padding-top: 80px;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img,
.hero-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 3, 33, 0.72) 0%, rgba(0, 3, 33, 0.55) 55%, rgba(0, 3, 33, 0.35) 100%),
    linear-gradient(180deg, rgba(0, 3, 33, 0.35) 0%, rgba(0, 3, 33, 0.70) 100%);
  z-index: 1;
}
.hero h1, .hero .hero-h1, .hero p.lede {
  text-shadow: 0 2px 20px rgba(0, 3, 33, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 4rem 0;
}
.hero h1, .hero .hero-h1 { color: #fff; }
.hero p.lede {
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.92);
  margin: 1.5rem 0 2rem;
  max-width: 640px;
  line-height: 1.55;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ─── Trust Bar ─── */
.trust-bar {
  background: var(--c-bg-alt);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--c-bg-divider);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}
.trust-stat {
  text-align: center;
}
.trust-stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.trust-stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ─── Cards ─── */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease-hover), box-shadow 0.3s var(--ease-hover);
  height: 100%;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: rgba(255, 154, 54, 0.12);
  color: var(--c-orange-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.375rem;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }
.card-grid-2 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .card-grid-2 { grid-template-columns: repeat(2, 1fr); } }

/* ─── Process / Timeline ─── */
.process-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--c-bg-divider);
}
.process-step:last-child { border-bottom: none; }
.process-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--c-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
}
.process-step h3 { margin-bottom: 0.5rem; }

/* ─── Testimonials ─── */
.testimonial {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--c-orange);
}
.testimonial blockquote {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--c-text);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.testimonial cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: var(--c-navy-dark);
  font-size: 0.9375rem;
}
.testimonial cite span {
  display: block;
  font-weight: 400;
  color: var(--c-text-secondary);
  font-size: 0.875rem;
  margin-top: 2px;
}
.testimonial-rating {
  color: var(--c-amber);
  margin-bottom: 1rem;
  font-size: 1.125rem;
  letter-spacing: 2px;
}
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-orange-soft), var(--c-orange-deep));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(242, 141, 40, 0.28);
}
.testimonial-meta .testimonial-rating {
  margin-bottom: 0.125rem;
  font-size: 1rem;
  letter-spacing: 1px;
}
.testimonial-source {
  font-size: 0.75rem;
  color: var(--c-text-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ─── Guarantee Card ─── */
.guarantee-card {
  background: #fff;
  border: 1px solid var(--c-bg-divider);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  align-items: start;
  transition: border-color 0.2s var(--ease-hover), transform 0.2s var(--ease-hover);
}
.guarantee-card:hover {
  border-color: var(--c-orange);
  transform: translateY(-2px);
}
.guarantee-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--c-navy-dark);
  color: var(--c-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.guarantee-card h4 {
  font-size: 1.0625rem;
  margin-bottom: 0.375rem;
  color: var(--c-navy-dark);
}
.guarantee-card p {
  font-size: 0.9375rem;
  color: var(--c-text-secondary);
  line-height: 1.55;
  margin: 0;
}

/* ─── Pricing ─── */
.price-display {
  text-align: center;
  padding: 2.5rem;
  background: var(--c-bg-alt);
  border-radius: var(--radius-lg);
}
.price-display-amount {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.price-display-amount span {
  font-size: 0.5em;
  color: var(--c-text-secondary);
  font-family: var(--font-body);
  font-weight: 500;
}
.price-display-detail {
  font-size: 1rem;
  color: var(--c-text-secondary);
  margin-top: 1rem;
}

/* ─── FAQ ─── */
.faq {
  border-bottom: 1px solid var(--c-bg-divider);
}
.faq summary {
  cursor: pointer;
  padding: 1.5rem 0;
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--c-navy-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 24px;
  color: var(--c-orange);
  font-weight: 400;
  transition: transform 0.3s var(--ease-hover);
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 0 1.5rem;
  color: var(--c-text);
  line-height: 1.65;
}

/* ─── Cal Embed Skeleton ─── */
#cal-embed {
  background: var(--c-bg-alt);
  border-radius: var(--radius-lg);
  min-height: 600px;
  overflow: hidden;
}
.cal-skeleton {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.skeleton {
  background: linear-gradient(90deg, var(--c-bg-divider) 0%, #fff 50%, var(--c-bg-divider) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

/* ─── Footer ─── */
.site-footer {
  background: var(--c-navy-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 2rem;
  font-size: 0.9375rem;
}
.site-footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.site-footer a { color: rgba(255, 255, 255, 0.75); }
.site-footer a:hover { color: var(--c-orange); }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ─── Animations ─── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-enter), transform 0.7s var(--ease-enter);
}
.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.7s var(--ease-enter);
}
.fade-in.in-view { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-up, .fade-in { opacity: 1; transform: none; }
}

/* ─── Utility ─── */
.text-center { text-align: center; }
.text-orange { color: var(--c-orange-deep); }
.text-navy { color: var(--c-navy); }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.no-wrap { white-space: nowrap; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Placeholder marker — visible during dev to flag missing assets */
[data-placeholder] {
  outline: 2px dashed var(--c-orange);
  outline-offset: 2px;
  background: rgba(255, 154, 54, 0.08);
}
[data-placeholder]::before {
  content: 'PLACEHOLDER — needs real asset';
  position: absolute;
  top: 0.5rem; left: 0.5rem;
  background: var(--c-orange);
  color: var(--c-navy-dark);
  padding: 0.25rem 0.5rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 3px;
  z-index: 5;
}
