:root {
  --navy:       #0d1f4f;
  --navy-mid:   #162a6b;
  --navy-light: #1e3a8a;
  --blue:        #569bc9;
  --blue-dark:   #87ceeb;
  --blue-light:  #b0e0e6;
  --white:      #ffffff;
  --off-white:  #f7f8fc;
  --silver:     #e8eaf2;
  --text:       #0d1f4f;
  --text-mid:   #3b4a73;
  --text-soft:  #6672a0;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* Smooth scroll offset for sticky header */
[id] {
  scroll-margin-top: 80px; 
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--off-white);
  color: var(--text);
  overflow-x: hidden;
}

/* ── UNION JACK STRIPE TOP ── */
.uk-stripe {
  height: 8px;
  background: linear-gradient(90deg,
    var(--navy) 0%, var(--navy) 33%,
    var(--white) 33%, var(--white) 36%,
    #c8102e 36%, #c8102e 64%,
    var(--white) 64%, var(--white) 67%,
    var(--navy) 67%, var(--navy) 100%
  );
}

/* ── TOP BAR ── */
.top-bar {
  background: white;
  color: var(--navy);
  text-align: center;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.top-bar a { color: var(--navy); text-decoration: underline; }

/* ── HEADER ── */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo img {
  height: 46px;
  width: 46px;
  border-radius: 50%;
  object-fit: cover;
  background: white;
}
.logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.3px;
}
.logo-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
nav { display: flex; gap: 4px; align-items: center; }
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  padding: 8px;
}
nav a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 6px 13px;
  border-radius: 6px;
  transition: all 0.2s;
  letter-spacing: 0.2px;
}
nav a:hover { color: white; background: rgba(255,255,255,0.1); }
nav a.active { color: white; }
.nav-cta {
  background: var(--blue) !important;
  color: white !important;
  padding: 8px 18px !important;
}
.nav-cta:hover { background: var(--blue-light) !important; }

/* ── HERO ── */
.hero {
  background: var(--navy);
  color: white;
  padding: 90px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* SUBPAGE HERO OVERRIDES */
.hero.hero-subpage {
  padding: 50px 24px 60px;
}
.hero.hero-subpage .hero-flag-badge {
  margin-bottom: 20px;
}
.hero.hero-subpage .hero-headline {
  margin-bottom: 16px;
}
.hero.hero-subpage .hero-headline .title-main,
.hero.hero-subpage .hero-headline .title-accent {
  font-size: clamp(30px, 5vw, 52px);
}
.hero.hero-subpage .hero-headline .title-sub {
  font-size: clamp(15px, 2vw, 20px);
  margin-top: 8px;
}
.hero.hero-subpage .hero-sub {
  margin-bottom: 24px;
}
/* Geometric grid lines */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
/* Blue diagonal accent */
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(173,216,230,0.18) 0%, transparent 70%);
  pointer-events: none;
}
/* Left glow */
.hero-glow-left {
  position: absolute;
  top: -60px;
  left: -60px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,58,138,0.7) 0%, transparent 70%);
  pointer-events: none;
}

.hero-flag-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.flag-mini {
  display: inline-flex;
  gap: 2px;
  align-items: center;
  font-size: 15px;
}

/* BIG WORD split layout */
.hero-headline {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.hero-headline .label-small {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
}
.hero-headline .title-main {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(38px, 6.5vw, 72px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: white;
}
.hero-headline .title-accent {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(38px, 6.5vw, 72px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--blue);
}
.hero-headline .title-sub {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(18px, 2.5vw, 26px);
  line-height: 1.4;
  letter-spacing: -0.3px;
  color: rgba(255,255,255,0.55);
  margin-top: 12px;
}

.hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  max-width: 440px;
  margin: 0 auto 40px;
  line-height: 1.75;
  font-weight: 400;
  position: relative;
  z-index: 1;
  letter-spacing: 0.1px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  letter-spacing: 0.2px;
}
.btn-blue {
  background: var(--blue);
  color: white;
}
.btn-blue:hover { background: var(--blue-light); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(173,216,230,0.35); }
.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.07); }

/* ── BLUE DIVIDER ── */
.blue-divider {
  height: 4px;
  background: var(--blue);
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--silver);
  padding: 16px 24px;
}
.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 500;
}
.trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* ── SECTION ── */
.section-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 24px;
}
.section-eyebrow {
  text-align: center;
  margin-bottom: 10px;
}
.section-eyebrow span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
}
.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.section-desc {
  text-align: center;
  color: var(--text-soft);
  font-size: 15px;
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.65;
}

/* ── CARDS ── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.card {
  background: var(--white);
  border-radius: 14px;
  padding: 32px 28px 28px;
  border: 1.5px solid var(--silver);
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(13,31,79,0.1); border-color: rgba(13,31,79,0.2); }
.card:hover::after { transform: scaleX(1); }

.card.featured {
  background: var(--navy);
  border-color: var(--navy);
}
.card.featured::after { background: var(--blue); }

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  background: var(--off-white);
  border: 1.5px solid var(--silver);
}
.card.featured .card-icon {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
}
.card-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 7px;
  display: block;
}
.card.featured .card-tag { color: #b0e0e6; }
.card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: -0.2px;
}
.card.featured h3 { color: white; }
.card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 18px;
}
.card.featured p { color: rgba(255,255,255,0.6); }
.card-features {
  list-style: none;
  margin-bottom: 26px;
}
.card-features li {
  font-size: 13px;
  color: var(--text-mid);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid var(--silver);
}
.card-features li:last-child { border-bottom: none; }
.card.featured .card-features li {
  color: rgba(255,255,255,0.75);
  border-bottom-color: rgba(255,255,255,0.1);
}
.check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 9px;
  color: white;
  font-weight: 700;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  padding: 9px 18px;
  border: 2px solid var(--navy);
  border-radius: 7px;
  transition: all 0.2s;
  letter-spacing: 0.2px;
}
.card-link:hover { background: var(--navy); color: white; }
.card.featured .card-link {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}
.card.featured .card-link:hover { background: var(--blue-light); border-color: var(--blue-light); }

/* ── Z-PATTERN LAYOUT ── */
.z-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.z-row {
  display: flex;
  background: var(--white);
  border: 1.5px solid var(--silver);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.25s;
}
.z-row:hover {
  transform: translateY(-4px); 
  box-shadow: 0 16px 48px rgba(13,31,79,0.1); 
  border-color: rgba(13,31,79,0.2);
}
.z-row.featured {
  background: var(--navy);
  border-color: var(--navy);
}
.z-content {
  flex: 1;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.z-visual {
  flex: 1;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.z-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  margin: 12px;
}
.z-row.featured .z-visual {
  background: rgba(255,255,255,0.05);
}
/* Alternate row layout */
.z-row:nth-child(even) {
  flex-direction: row-reverse;
}

.z-row h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: -0.2px;
}
.z-row.featured h3 { color: white; }

.z-row p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 24px;
}
.z-row.featured p { color: rgba(255,255,255,0.6); }

.z-row .card-features {
  list-style: none;
  margin-bottom: 0;
}
.z-row .card-features li {
  font-size: 14px;
  color: var(--text-mid);
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--silver);
}
.z-row .card-features li:last-child { border-bottom: none; }
.z-row.featured .card-features li {
  color: rgba(255,255,255,0.75);
  border-bottom-color: rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
  .z-row, .z-row:nth-child(even) {
    flex-direction: column;
  }
  .z-content { padding: 32px 24px; }
  .z-visual { min-height: 200px; width: 100%; font-size: 80px; }
}

/* ── MEDIA & GALLERY ── */
.media-band {
  background: var(--navy);
  padding: 88px 24px;
  position: relative;
}
.media-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.media-text {
  text-align: center;
  margin-bottom: 48px;
}
.media-text .section-title { color: white; }
.media-text .section-desc {
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin: 0 auto 32px;
}
.media-features {
  list-style: disc;
  display: inline-block;
  text-align: left;
  margin: 0 auto;
  padding-left: 24px;
}
.media-features li {
  font-size: 15px;
  color: white;
  margin-bottom: 12px;
  line-height: 1.5;
}
.media-features li:last-child {
  margin-bottom: 0;
}
.media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.video-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
  aspect-ratio: 16/9;
}
.video-frame iframe { width: 100%; height: 100%; border: none; display: block; }

.image-showcase {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.showcase-img {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  aspect-ratio: 1.6 / 1;
  width: 100%;
  transform: translateZ(0); /* Hardware acceleration for smooth animations */
}

/* Desktop Mosaic Spans (9 items total) */
.showcase-img:nth-child(1), .showcase-img:nth-child(2) { grid-column: span 6; }
.showcase-img:nth-child(3), .showcase-img:nth-child(4), .showcase-img:nth-child(5) { grid-column: span 4; }
.showcase-img:nth-child(6), .showcase-img:nth-child(7), .showcase-img:nth-child(8), .showcase-img:nth-child(9) { grid-column: span 3; }

.showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
}
.showcase-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,31,79,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.showcase-img:hover img { transform: scale(1.08); }
.showcase-img:hover::after { opacity: 1; }

/* ── GOOGLE REVIEWS ── */
.reviews-band {
  background: var(--off-white);
  border-top: 1px solid var(--silver);
  padding: 56px 0 40px;
}
.reviews-slider-container {
  width: 100%;
  overflow: hidden;
}
.reviews-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 12px 24px 32px 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--silver) transparent;
}
.reviews-slider::-webkit-scrollbar {
  height: 8px;
}
.reviews-slider::-webkit-scrollbar-track {
  background: transparent;
}
.reviews-slider::-webkit-scrollbar-thumb {
  background-color: var(--silver);
  border-radius: 10px;
}
.review-card {
  flex: 0 0 calc(100% - 40px);
  max-width: 380px;
  scroll-snap-align: center;
  background: var(--white);
  border: 1.5px solid var(--silver);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(13, 31, 79, 0.05);
}
@media (min-width: 768px) {
  .review-card {
    flex: 0 0 380px;
  }
}
.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  color: white;
  flex-shrink: 0;
}
.review-meta {
  flex-grow: 1;
}
.review-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.review-date {
  font-size: 13px;
  color: var(--text-soft);
}
.review-google-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.review-stars {
  color: #FBBC05;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.review-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

.btn-outline-navy {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  letter-spacing: 0.2px;
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: white;
}

/* ── CONTACT ── */
.contact-band { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Syne', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.contact-info p {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.contact-methods { display: flex; flex-direction: column; gap: 10px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  background: var(--off-white);
  border-radius: 10px;
  border: 1.5px solid var(--silver);
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s;
}
.contact-method:hover { border-color: var(--blue); box-shadow: 0 4px 16px rgba(173,216,230,0.08); }
.cm-icon {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: white;
}
.cm-text strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.3px;
  margin-bottom: 2px;
}
.cm-text span { font-size: 13px; color: var(--text-soft); }

.contact-form-card {
  background: var(--navy);
  border-radius: 16px;
  padding: 36px;
}
.contact-form-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 22px;
  letter-spacing: -0.3px;
}
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: white;
  background: rgba(255,255,255,0.08);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group select { color: rgba(255,255,255,0.7); }
.form-group select option { color: #333; background: white; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); background: rgba(255,255,255,0.12); }
.form-group textarea { height: 88px; resize: vertical; }
.btn-form {
  width: 100%;
  background: var(--blue);
  color: white;
  border: none;
  padding: 13px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
  display: block;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.2px;
}
.btn-form:hover { background: var(--blue-light); }

/* ── SOCIAL ── */
.social-band {
  background: var(--off-white);
  border-top: 1px solid var(--silver);
  padding: 36px 24px;
  text-align: center;
}
.social-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 16px;
}
.social-links { display: flex; gap: 10px; justify-content: center; }
.social-link {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  color: white;
  font-weight: 700;
  transition: all 0.2s;
}
.social-link:hover { background: var(--blue); transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: var(--navy);
}
.footer-uk {
  height: 8px;
  background: linear-gradient(90deg, #c8102e 0%, var(--white) 33%, #c8102e 33%, #c8102e 66%, var(--white) 66%, var(--navy) 100%);
  opacity: 0.4;
}
.footer-map {
  padding: 48px 24px 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-map iframe {
  width: 100%;
  height: 400px;
  display: block;
  border-radius: 16px;
}
.footer-inner {
  padding: 24px;
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-size: 13px;
}
.footer-inner a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-inner a:hover { color: #b0e0e6; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .mobile-toggle { display: block; }
  nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: var(--navy);
    border-bottom: 2px solid var(--blue);
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
    z-index: -1;
  }
  nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  nav a {
    width: 100%;
    text-align: center;
    padding: 15px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  nav a:last-child { border-bottom: none; }
  .header-inner { padding: 0 16px; }

  .hero { padding: 60px 16px 80px; }
  .hero-headline .title-main,
  .hero-headline .title-accent { 
    font-size: 34px; 
    letter-spacing: -0.5px; 
  }

  .trust-inner { gap: 16px; }
  .section-wrap { padding: 56px 16px; }

  .media-band { padding: 60px 16px; }
  .contact-grid { 
    display: grid;
    grid-template-columns: 1fr; 
    gap: 24px; 
  }
  .video-frame { border-radius: 12px; }
  .image-showcase {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.2) transparent;
  }
  .image-showcase::-webkit-scrollbar {
    height: 6px;
  }
  .image-showcase::-webkit-scrollbar-track {
    background: transparent;
  }
  .image-showcase::-webkit-scrollbar-thumb {
    background-color: rgba(255,255,255,0.2);
    border-radius: 10px;
  }
  .showcase-img { 
    border-radius: 12px;
    flex: 0 0 85%;
    scroll-snap-align: center;
  }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-flag-badge { animation: fadeUp 0.5s ease both; }
.hero-headline .label-small { animation: fadeUp 0.5s 0.08s ease both; }
.hero-headline .title-main  { animation: fadeUp 0.55s 0.16s ease both; }
.hero-headline .title-accent { animation: fadeUp 0.55s 0.24s ease both; }
.hero-headline .title-sub   { animation: fadeUp 0.55s 0.32s ease both; }
.hero-sub     { animation: fadeUp 0.5s 0.42s ease both; }
.hero-actions { animation: fadeUp 0.5s 0.52s ease both; }
.hero-flag-badge { animation: fadeUp 0.5s ease both; }
.hero-headline .label-small { animation: fadeUp 0.5s 0.08s ease both; }
.hero-headline .title-main  { animation: fadeUp 0.55s 0.16s ease both; }
.hero-headline .title-accent { animation: fadeUp 0.55s 0.24s ease both; }
.hero-headline .title-sub   { animation: fadeUp 0.55s 0.32s ease both; }
.hero-sub     { animation: fadeUp 0.5s 0.42s ease both; }
.hero-actions { animation: fadeUp 0.5s 0.52s ease both; }
.hero-headline .title-accent { animation: fadeUp 0.55s 0.24s ease both; }
.hero-headline .title-sub   { animation: fadeUp 0.55s 0.32s ease both; }
.hero-sub     { animation: fadeUp 0.5s 0.42s ease both; }
.hero-actions { animation: fadeUp 0.5s 0.52s ease both; }