/* ================================================
   DANIEL KROH — Website
   Color Palette: Navy, Cyan, Amber, White
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg-dark: #0a0e1a;
  --bg-navy: #0d1527;
  --bg-card: #141c32;
  --cyan: #00d4ff;
  --cyan-glow: #00b8e6;
  --amber: #f5a623;
  --gold: #ffd700;
  --warm-yellow: #ffe066;
  --green: #00e676;
  --white: #ffffff;
  --silver: #c0c8d8;
  --slate: #2a3550;
  --text-light: #e8ecf4;
  --text-muted: #8892a8;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

img {
  max-width: 100%;
  height: auto;
}

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 3vw;
  background: var(--bg-dark);
}

/* Blended image — fades into dark background */
.blended-image {
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 45%, transparent 85%);
          mask-image: radial-gradient(ellipse at center, #000 45%, transparent 85%);
}

/* Scroll Progress Bar — positioned at bottom of header */
.site-header {
  overflow: visible;
}

.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--amber));
  z-index: 101;
}

.site-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 28px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--cyan);
}

/* ---- HERO ---- */
.hero-standalone {
  position: relative;
  width: 100%;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-dark);
  z-index: 10;
  padding-top: 6rem;
  padding-bottom: 4rem;
  padding-left: 5vw;
  padding-right: 5vw;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
  filter: blur(4px) saturate(0.4) brightness(0.8);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 30, 0.7);
  z-index: -1;
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.hero-label {
  opacity: 0;
}

.hero-standalone .section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 2rem;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--white);
}

.hero-heading span {
  display: block;
  opacity: 0;
  transform: translateY(60px);
}

.hero-heading span:nth-child(2) {
  color: var(--cyan);
}

.hero-heading span:nth-child(3) {
  background: linear-gradient(135deg, var(--amber), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 2.5rem;
  max-width: 500px;
  opacity: 0;
  transform: translateY(30px);
}

.hero-cta {
  margin-top: 2.5rem;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(20px);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 5vw;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
}

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.5rem;
}

/* ---- PORTRAIT (static section) ---- */
.static-image-wrap--portrait {
  max-width: 280px;
  margin: 0 auto;
}

.static-image-wrap--portrait img {
  border-radius: 8px;
}

.cta-button {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2.5rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bg-dark);
  background: linear-gradient(135deg, var(--cyan), var(--cyan-glow));
  border-radius: 0;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: linear-gradient(135deg, var(--amber), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 166, 35, 0.3);
}

/* ---- IMAGE BANNER ---- */
.image-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  max-height: 420px;
}

.image-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-banner--overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--bg-dark) 0%,
    transparent 15%,
    transparent 85%,
    var(--bg-dark) 100%
  );
  pointer-events: none;
}

.image-banner--overlay-alt::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--bg-navy) 0%,
    transparent 15%,
    transparent 85%,
    var(--bg-navy) 100%
  );
  pointer-events: none;
}

@media (max-width: 768px) {
  .image-banner {
    max-height: 260px;
  }
}

/* ---- HOME CTA ---- */
.home-cta {
  position: relative;
  z-index: 20;
  padding: 6rem 5vw;
  background: var(--bg-navy);
  text-align: center;
  border-top: 1px solid rgba(0, 212, 255, 0.06);
}

.home-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.home-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1rem;
}

.home-cta-text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--silver);
  margin-bottom: 2rem;
}

/* ---- REFERENZEN ---- */
.referenzen-container {
  max-width: 1100px;
  margin: 0 auto;
}

.referenzen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.referenz-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 212, 255, 0.08);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-decoration: none;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

a.referenz-card:hover {
  border-color: rgba(0, 212, 255, 0.25);
  transform: translateY(-4px);
}

.referenz-tag {
  display: inline-block;
  width: fit-content;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0, 212, 255, 0.08);
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
}

.referenz-tag--academic {
  color: var(--amber);
  background: rgba(245, 166, 35, 0.08);
}

.referenz-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.referenz-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--silver);
}

.referenz-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.referenz-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}

.referenz-meta-item svg {
  color: var(--amber);
}

.referenz-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.referenz-tech span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  background: rgba(0, 212, 255, 0.04);
  border: 1px solid rgba(0, 212, 255, 0.08);
  padding: 0.3rem 0.65rem;
  border-radius: 2px;
}

.referenz-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cyan);
  margin-top: 0.5rem;
  transition: gap 0.3s ease;
}

a.referenz-card:hover .referenz-link {
  gap: 0.7rem;
}

.referenz-banner {
  margin-top: 3rem;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(245, 166, 35, 0.08));
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.referenz-banner-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--silver);
  max-width: 600px;
}

.referenz-banner .cta-button--small {
  flex-shrink: 0;
  padding: 0.8rem 2rem;
  font-size: 0.8rem;
  margin-top: 0;
}

@media (max-width: 768px) {
  .referenz-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .referenz-banner-text {
    font-size: 0.88rem;
  }
}

.referenz-quote {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: var(--silver);
  border-left: 2px solid var(--cyan);
  padding-left: 1rem;
  margin: 1rem 0;
}

@media (max-width: 768px) {
  .referenzen-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .referenz-card {
    padding: 2rem 1.5rem;
  }

  .referenz-title {
    font-size: 1.2rem;
  }

  a.referenz-card:hover {
    transform: none;
  }
}

/* ---- TESTIMONIALS ---- */
.testimonials-container {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 212, 255, 0.08);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(0, 212, 255, 0.2);
  transform: translateY(-3px);
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  color: var(--amber);
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: var(--silver);
  border: none;
  padding: 0;
  margin: 0;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 212, 255, 0.08);
}

.testimonial-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.testimonial-role {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-card:hover {
    transform: none;
  }
}

/* ---- HAMBURGER MENU ---- */
.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  z-index: 201;
  -webkit-tap-highlight-color: transparent;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-burger.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- MOBILE NAV OVERLAY ---- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 14, 26, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 6vw, 2.5rem);
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.nav-active {
  color: var(--cyan);
}

/* ---- MOBILE ---- */
@media (max-width: 768px) {
  .nav-burger {
    display: flex;
  }

  .hero-standalone {
    padding-left: 6vw;
    padding-right: 6vw;
    min-height: 75vh;
    padding-top: 5rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .nav-links {
    display: none;
  }

  .site-header {
    padding: 1rem 4vw;
  }

  .cta-button {
    padding: 1.1rem 2rem;
    font-size: 0.85rem;
    min-height: 48px;
  }

  .section-label {
    font-size: 0.7rem;
  }
}

/* ---- EXTRA SMALL ---- */
@media (max-width: 480px) {
  .hero-heading {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .hero-tagline {
    font-size: 0.9rem;
  }

  .hero-standalone {
    padding-top: 4rem;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .hero-content {
    max-width: 100%;
  }

  .mobile-nav-links a {
    font-size: 1.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-nav-col {
    gap: 0.5rem;
  }

  .site-footer {
    padding: 2.5rem 5vw 1.5rem;
  }

  .referenz-card {
    padding: 1.5rem 1.25rem;
  }

  .referenz-title {
    font-size: 1.1rem;
  }

  .referenz-tech span {
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
  }

  .location-highlights {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-metrics {
    flex-direction: column;
  }
}

/* ---- SAFE AREA (notched devices) ---- */
@supports (padding: env(safe-area-inset-bottom)) {
  .site-header {
    padding-left: max(4vw, env(safe-area-inset-left));
    padding-right: max(4vw, env(safe-area-inset-right));
  }

  .site-footer,
  .about-footer {
    padding-bottom: max(2rem, env(safe-area-inset-bottom));
  }
}

/* ================================================
   STATIC SECTIONS (below scroll animation)
   ================================================ */

.heading-accent {
  background: linear-gradient(135deg, var(--cyan), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.static-section {
  position: relative;
  z-index: 20;
  padding: 10rem 5vw;
  background: var(--bg-dark);
  border-top: 1px solid rgba(0, 212, 255, 0.06);
  overflow: hidden;
}

.static-section--alt {
  background: var(--bg-navy);
}

.static-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  align-items: start;
  max-width: 1300px;
  margin: 0 auto;
}

.static-grid--img-left .static-image {
  order: -1;
}

/* ---- Text ---- */
.static-text {
  max-width: 540px;
}

.static-grid--img-left .static-text {
  justify-self: end;
}

.static-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.static-body {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--silver);
  margin-bottom: 1.5rem;
}

.static-body--small {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ---- List ---- */
.static-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.static-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-light);
}

.list-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--cyan);
}

.list-icon svg {
  width: 100%;
  height: 100%;
}

.static-link {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cyan);
  margin-top: 0.5rem;
  transition: color 0.3s ease;
}

.static-link:hover {
  color: var(--amber);
}

/* ---- Image ---- */
.static-image-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.static-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  transition: transform 0.6s ease;
}

.static-image-wrap:hover img {
  transform: scale(1.03);
}

.static-image-glow {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0.5;
}

.static-image-glow--cyan {
  box-shadow: inset 0 0 60px rgba(0, 212, 255, 0.08),
              0 0 80px rgba(0, 212, 255, 0.06);
}

.static-image-glow--amber {
  box-shadow: inset 0 0 60px rgba(245, 166, 35, 0.08),
              0 0 80px rgba(245, 166, 35, 0.06);
}

.static-image-glow--gold {
  box-shadow: inset 0 0 60px rgba(255, 215, 0, 0.08),
              0 0 80px rgba(255, 215, 0, 0.06);
}

/* ---- Location Highlights ---- */
.location-highlights {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 2.5rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0, 212, 255, 0.1);
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.loc-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.loc-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--amber);
}

.loc-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.loc-divider {
  width: 1px;
  height: 36px;
  background: rgba(0, 212, 255, 0.15);
}

/* ---- Trust Metrics ---- */
.trust-metrics {
  display: flex;
  gap: 2.5rem;
  margin: 2.5rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0, 212, 255, 0.1);
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.trust-metric {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 6rem;
}

.trust-metric-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cyan);
  font-variant-numeric: tabular-nums;
}

.trust-metric-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---- Footer ---- */
.site-footer {
  position: relative;
  z-index: 20;
  padding: 5rem 5vw 2.5rem;
  border-top: 1px solid rgba(0, 212, 255, 0.06);
  background: var(--bg-dark);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1300px;
  margin: 0 auto;
  padding-bottom: 3rem;
}

/* Brand column */
.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.footer-logo span {
  background: linear-gradient(135deg, var(--cyan), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 260px;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--silver);
  text-decoration: none;
  transition: color 0.3s ease;
}

a.footer-contact-row:link,
a.footer-contact-row:visited {
  color: var(--silver);
  text-decoration: none;
}

a.footer-contact-row:hover {
  color: var(--cyan);
}

.footer-contact-row svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--cyan);
}

/* Nav columns */
.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-nav-title {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.footer-nav-col a,
.footer-nav-col a:link,
.footer-nav-col a:visited {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav-col a:hover {
  color: var(--cyan);
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 212, 255, 0.08);
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-social-link,
.footer-social-link:link,
.footer-social-link:visited {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 255, 0.12);
  color: var(--text-muted);
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.footer-social-link:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
}

/* ---- TABLET ---- */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
  }

  .static-section {
    padding: 6rem 5vw;
  }

  .static-grid {
    gap: 3vw;
  }
}

/* ---- STATIC SECTIONS MOBILE ---- */
@media (max-width: 768px) {
  .home-cta {
    padding: 4rem 5vw;
  }

  .home-cta-heading {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .static-section {
    padding: 4rem 5vw;
  }

  .static-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .static-grid--img-left .static-text {
    order: -1;
    justify-self: start;
  }

  .static-grid--img-right .static-image {
    order: -1;
  }

  .static-text {
    max-width: 100%;
  }

  .static-heading {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  .location-highlights {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .loc-divider {
    display: none;
  }

  .trust-metrics {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .static-link {
    padding: 0.5rem 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .site-footer {
    padding: 3rem 5vw 2rem;
  }
}

@media (max-width: 480px) {
  .static-section {
    padding: 3rem 5vw;
  }

  .static-heading {
    font-size: 1.8rem;
  }

  .location-highlights {
    gap: 0.75rem;
  }

  .loc-value {
    font-size: 1.1rem;
  }

  .trust-metric-value {
    font-size: 1.2rem;
  }
}

/* ---- SELECTION ---- */
::selection {
  background: var(--cyan);
  color: var(--bg-dark);
}
