/* FIRELESS USA — brand palette from logo */
:root {
  --navy: #0a2463;
  --navy-deep: #051a47;
  --red: #c41e1e;
  --red-hover: #a01818;
  --orange: #ff6b35;
  --gold: #ffc857;
  --white: #ffffff;
  --muted: #e8ecf4;
  --text: #1a1f2e;
  --text-soft: #4a5568;
  --font-display: "Montserrat", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --radius: 8px;
  --shadow: 0 12px 40px rgba(10, 36, 99, 0.15);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}

h1,
h2,
h3,
.brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.02em;
}

a {
  color: var(--navy);
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 4px solid var(--red);
  box-shadow: var(--shadow);
}

@media (prefers-reduced-motion: no-preference) {
  html.js-animations .site-header {
    animation: header-slide-down 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--white);
}

.brand-logo {
  border-radius: 6px;
  object-fit: contain;
  border: 2px solid var(--gold);
  background: var(--white);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .brand:hover .brand-logo {
    transform: scale(1.06) rotate(-2deg);
    box-shadow: 0 6px 20px rgba(255, 200, 87, 0.35);
  }
}

.brand-text {
  font-size: 1.35rem;
  text-transform: uppercase;
}

.brand-usa {
  color: var(--gold);
}

.nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.nav a {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav a:hover {
  color: var(--white);
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  width: 100%;
}

.nav a[aria-current="page"] {
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s,
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.22s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 30, 30, 0.25);
  }

  .btn-outline:hover {
    box-shadow: 0 8px 24px rgba(10, 36, 99, 0.15);
  }

  .btn:active {
    transform: translateY(0) scale(0.98);
  }

  .hero .btn:hover {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  }
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-primary:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
}

.btn-header {
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .btn-header {
    width: 100%;
    text-align: center;
  }

  .header-inner {
    justify-content: center;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: 4rem 0 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--navy-deep) 0%,
    var(--navy) 45%,
    #152a6b 100%
  );
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55%;
  max-width: 480px;
  aspect-ratio: 1;
  background: radial-gradient(
    circle,
    rgba(255, 107, 53, 0.25) 0%,
    transparent 70%
  );
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  html.js-animations .hero-bg::after {
    animation: hero-glow 8s ease-in-out infinite;
  }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  row-gap: 2rem;
  column-gap: 3.2rem;
  align-items: center;
}

.hero-grid .hero-content {
  max-width: 640px;
}

.hero-visual {
  margin: 0;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 260px;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 3px solid var(--gold);
  box-shadow: var(--shadow);
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-grid .hero-content {
    max-width: none;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero .eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.15;
  color: var(--white);
}

.hero .lead {
  margin: 0 0 2rem;
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero .btn-outline {
  color: var(--white);
  border-color: var(--white);
}

.hero .btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
}

.section-intro {
  margin: 0 0 2.5rem;
  color: var(--text-soft);
  max-width: 640px;
}

.section-alt {
  background: linear-gradient(180deg, var(--muted) 0%, var(--white) 100%);
}

.grid.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(10, 36, 99, 0.12);
  box-shadow: 0 4px 20px rgba(10, 36, 99, 0.06);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.35s ease;
}

.card:hover {
  border-color: rgba(255, 107, 53, 0.35);
}

@media (prefers-reduced-motion: no-preference) {
  .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(10, 36, 99, 0.12);
  }
}

.card-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  color: var(--navy);
}

.card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.98rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 768px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.split p {
  color: var(--text-soft);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 200px;
}

.stat {
  background: var(--navy);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--orange);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-left-color 0.35s ease,
    box-shadow 0.35s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .stat:hover {
    transform: translateX(4px);
    border-left-color: var(--gold);
    box-shadow: -4px 8px 24px rgba(10, 36, 99, 0.2);
  }
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.75rem;
  letter-spacing: 0.05em;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* CTA */
.cta-section {
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.cta-inner {
  padding: 1rem 0;
}

.cta-section h2 {
  margin: 0 0 0.75rem;
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
}

.cta-section p {
  margin: 0 0 1.5rem;
  color: var(--muted);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: var(--muted);
  padding: 2rem 0;
  border-top: 3px solid var(--red);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand .brand-text {
  color: var(--white);
  font-size: 1.1rem;
}

.footer-tagline {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  opacity: 0.85;
}

.copyright {
  margin: 0;
  font-size: 0.85rem;
}

/* Inner pages */
.page-hero {
  position: relative;
  padding: 3rem 0 2.5rem;
  background: linear-gradient(
    135deg,
    var(--navy-deep) 0%,
    var(--navy) 50%,
    #152a6b 100%
  );
  border-bottom: 4px solid var(--red);
}

.page-hero .eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.page-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  line-height: 1.15;
  color: var(--white);
  max-width: 48rem;
}

.page-lead {
  margin: 0;
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 40rem;
  line-height: 1.55;
}

.anchor-target {
  scroll-margin-top: 5.5rem;
}

.prose .section-title {
  margin-top: 0;
}

.prose p {
  color: var(--text-soft);
  max-width: 42rem;
}

.section-title-spaced {
  margin-top: 2.5rem;
}

.prose-list {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
  color: var(--text-soft);
  max-width: 42rem;
}

.prose-list li {
  margin-bottom: 0.5rem;
}

.card-link {
  margin: 1rem 0 0;
  font-weight: 600;
}

.card-link a {
  text-decoration: none;
  color: var(--red);
}

.card-link a:hover {
  text-decoration: underline;
}

.inline-link {
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition:
    color 0.25s ease,
    border-color 0.25s ease;
}

.inline-link:hover {
  color: var(--red);
  border-bottom-color: rgba(196, 30, 30, 0.4);
}

.callout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(10, 36, 99, 0.12);
  border-left: 4px solid var(--orange);
  box-shadow: 0 4px 20px rgba(10, 36, 99, 0.06);
}

.callout p {
  margin: 0;
  color: var(--text);
  max-width: 36rem;
}

.card-plain {
  box-shadow: none;
}

.values-grid {
  margin-top: 1rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  margin-top: 1rem;
}

.footer-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-nav a:hover {
  color: var(--white);
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 840px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-panel .section-title {
  margin-bottom: 1.25rem;
}

.contact-item {
  margin: 0 0 1.35rem;
  color: var(--text-soft);
}

.contact-item:last-of-type {
  margin-bottom: 0;
}

.contact-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.contact-hint {
  display: block;
  font-size: 0.85rem;
  font-style: italic;
  margin-top: 0.25rem;
  opacity: 0.85;
}

.contact-form .section-title {
  margin-bottom: 1.25rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  background: var(--muted);
  border-radius: var(--radius);
  border: 1px solid rgba(10, 36, 99, 0.1);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}

.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(10, 36, 99, 0.2);
  border-radius: 6px;
  background: var(--white);
  color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--orange);
  outline-offset: 1px;
  border-color: transparent;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-soft);
}

/* Firefighter / field photography */
.section-tight {
  padding: 2.5rem 0;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 720px) {
  .photo-strip {
    grid-template-columns: 1fr;
  }
}

.photo-strip figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 2px solid rgba(10, 36, 99, 0.12);
  box-shadow: 0 8px 28px rgba(10, 36, 99, 0.1);
}

.photo-strip img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.photo-strip figcaption {
  padding: 0.5rem 0.75rem 0.65rem;
  font-size: 0.8rem;
  color: var(--text-soft);
  background: var(--white);
}

.photo-credit {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.photo-credit a {
  color: var(--navy);
  font-weight: 600;
}

.photo-credit a:hover {
  color: var(--red);
}

.media-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.media-split--reverse {
  direction: rtl;
}

.media-split--reverse > * {
  direction: ltr;
}

@media (max-width: 840px) {
  .media-split,
  .media-split--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .media-split--reverse > * {
    direction: ltr;
  }
}

.media-shot {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(10, 36, 99, 0.12);
  box-shadow: 0 8px 28px rgba(10, 36, 99, 0.08);
}

.media-shot img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 240px;
  max-height: 320px;
  object-fit: cover;
}

.media-shot figcaption {
  padding: 0.6rem 0.85rem;
  font-size: 0.8rem;
  color: var(--text-soft);
  background: var(--muted);
}

.prose-block .prose {
  align-self: center;
}

.about-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-aside .media-shot img {
  max-height: 280px;
}

.page-hero--photo {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
}

.page-hero--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 26, 71, 0.94) 0%,
    rgba(10, 36, 99, 0.82) 50%,
    rgba(10, 36, 99, 0.72) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0.5;
}

.page-hero--photo .container {
  position: relative;
  z-index: 2;
}

/* Google Maps embed */
.map-section .section-intro.map-intro {
  margin-bottom: 1.25rem;
}

.map-section code {
  font-size: 0.88em;
  background: rgba(10, 36, 99, 0.08);
  padding: 0.12em 0.35em;
  border-radius: 4px;
}

.map-embed-wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(10, 36, 99, 0.15);
  box-shadow: 0 12px 40px rgba(10, 36, 99, 0.12);
  background: var(--muted);
}

.map-embed-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-open {
  margin: 1.25rem 0 0;
}

.map-open-link {
  border-color: var(--navy);
  color: var(--navy);
}

.map-open-link:hover {
  background: var(--navy);
  color: var(--white);
}

/* Floating WhatsApp (official brand green #25D366) */
@keyframes whatsapp-pulse {
  0% {
    box-shadow:
      0 6px 24px rgba(0, 0, 0, 0.28),
      0 0 0 0 rgba(37, 211, 102, 0.55);
  }
  60% {
    box-shadow:
      0 6px 24px rgba(0, 0, 0, 0.28),
      0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow:
      0 6px 24px rgba(0, 0, 0, 0.28),
      0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float {
  position: fixed;
  z-index: 9999;
  bottom: max(1.35rem, env(safe-area-inset-bottom, 0px));
  right: max(1.35rem, env(safe-area-inset-right, 0px));
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  animation: whatsapp-pulse 2.1s ease-out infinite;
  transition:
    transform 0.25s ease,
    background-color 0.2s ease;
}

.whatsapp-float:hover {
  background: #20bd5a;
  transform: scale(1.08) translateY(-2px);
  animation: none;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.32);
}

.whatsapp-float:focus {
  outline: none;
}

.whatsapp-float:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
  animation: none;
  box-shadow:
    0 0 0 4px #25d366,
    0 8px 28px rgba(0, 0, 0, 0.3);
}

.whatsapp-float__icon {
  display: flex;
  width: 58%;
  height: 58%;
}

.whatsapp-float__icon svg {
  width: 100%;
  height: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float {
    animation: none;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
  }

  .whatsapp-float:hover {
    transform: scale(1.05);
  }
}

/* ========== Global motion (all pages) ========== */
@keyframes header-slide-down {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(1.35rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes hero-glow {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.75;
    transform: scale(1.05);
  }
}

@media (prefers-reduced-motion: no-preference) {
  html.js-animations main section:not(.hero):not(.page-hero) {
    opacity: 0;
    transform: translateY(1.75rem);
    transition:
      opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  }

  html.js-animations main section:not(.hero):not(.page-hero).is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  html.js-animations .hero .hero-content > .eyebrow {
    animation: fade-in-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
  }

  html.js-animations .hero .hero-content > h1 {
    animation: fade-in-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
  }

  html.js-animations .hero .hero-content > .lead {
    animation: fade-in-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;
  }

  html.js-animations .hero .hero-content > .hero-actions {
    animation: fade-in-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.32s both;
  }

  html.js-animations .hero .hero-visual {
    animation: fade-in-up 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both;
  }

  html.js-animations .page-hero .container > .eyebrow {
    animation: fade-in-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.06s both;
  }

  html.js-animations .page-hero .container > h1 {
    animation: fade-in-up 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.14s both;
  }

  html.js-animations .page-hero .container > .page-lead {
    animation: fade-in-up 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.24s both;
  }

  html.js-animations .site-footer {
    animation: fade-in 0.95s ease 0.4s both;
  }

  html.js-animations .photo-strip figure {
    transition:
      transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.4s ease;
  }

  html.js-animations .photo-strip figure:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(10, 36, 99, 0.14);
  }

  html.js-animations .media-shot {
    overflow: hidden;
  }

  html.js-animations .media-shot img {
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  }

  html.js-animations .media-shot:hover img {
    transform: scale(1.06);
  }

  html.js-animations .callout {
    transition:
      transform 0.35s ease,
      box-shadow 0.35s ease,
      border-color 0.35s ease;
  }

  html.js-animations .callout:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(10, 36, 99, 0.1);
  }

  html.js-animations .footer-nav a {
    transition:
      color 0.25s ease,
      transform 0.25s ease;
  }

  html.js-animations .footer-nav a:hover {
    transform: translateX(3px);
  }

  html.js-animations .contact-form input,
  html.js-animations .contact-form textarea {
    transition:
      border-color 0.25s ease,
      box-shadow 0.25s ease,
      transform 0.2s ease;
  }

  html.js-animations .contact-form input:focus,
  html.js-animations .contact-form textarea:focus {
    transform: scale(1.01);
  }
}
