/* ==========================
   Minimal Modern Reset (2026)
   ========================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

[hidden] {
  display: none !important;
}


/* ==========================
   Theme Variables
   ========================== */

:root {
  --ink: #0b1020;
  --text: #111827;
  --muted: #6b7280;
  --hover: #FE654F;
  --border: #e5e7eb;
  --bg: #ffffff;
  --max: 1200px;
}

body {
  font-family: Figtree, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

html {
  scroll-behavior: smooth;
}

h1, h2 {
  font-family: akzidenz-grotesk-extended, sans-serif;
  text-transform: uppercase;
}


/* ==========================
   BULLETS
   ========================== */


ul {
  margin: 16px 0;
  padding-left: 22px; /* bullet indent */
  font-size: 16px;
  color: #374151;
}

li {
  margin-bottom: 6px;
}

li::marker {
  font-size: 0.85em;
}


/* ==========================
   NAVIGATION
   ========================== */

.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000; /* ensures it stays above content */
  background: white; /* important so content doesn’t show through */
}

.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

/* Brand */
.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  line-height: 1.1;
  min-width: max-content;
}

.brand strong {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.2px;
  color: var(--ink);
}

.brand span {
  margin-top: 4px;
  font-size: 16px;
  color: var(--muted);
  font-weight: 500;
}

/* Right side */
.nav-right {
  display: flex;
  align-items: center;
  gap: 26px;
}

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 4px;
  border-radius: 8px;
  transition: color 0.15s ease, font-weight 0.15s ease;
}

/* Hover effect */
.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--hover);
  text-shadow: 0 0 0 currentColor, 
               0.3px 0 0 currentColor,
              -0.3px 0 0 currentColor;
}

/* CTA */
.cta {
  text-decoration: none;
  background: var(--hover);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.12s ease, filter 0.12s ease;
  white-space: nowrap;
  margin-bottom: 5px;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.25);
  outline: none;
}

/* Burger */
.burger {
  display: none;
  border: 0;
  background: transparent;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.burger:focus-visible {
  outline: 2px solid var(--hover);
  outline-offset: 2px;
}

.burger-lines {
  width: 22px;
  height: 16px;
  position: relative;
}

.burger-lines span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.18s ease, top 0.18s ease, opacity 0.18s ease;
}

.burger-lines span:nth-child(1) {
  top: 0;
}

.burger-lines span:nth-child(2) {
  top: 7px;
}

.burger-lines span:nth-child(3) {
  top: 14px;
}

/* Mobile dropdown */
.mobile-panel {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.mobile-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 20px 18px;
}

.mobile-links {
  list-style: none;
  margin: 0;
  padding: 8px 0 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-links a {
  display: block;
  padding: 12px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 650;
  transition: color 0.15s ease, font-weight 0.15s ease;
}

.mobile-links a:hover,
.mobile-links a:focus-visible {
  color: var(--hover);
  font-weight: 800;
  outline: none;
}

.mobile-cta {
  display: inline-flex;
  width: max-content;
}

/* Open state */
.is-open .mobile-panel {
  display: block;
}

.is-open .burger-lines span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

.is-open .burger-lines span:nth-child(2) {
  opacity: 0;
}

.is-open .burger-lines span:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

/* Responsive */
@media (max-width: 860px) {
  .nav-links {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .nav-right {
    gap: 10px;
  }

  .cta {
    padding: 10px 12px;
  }
}

@media (max-width: 420px) {
  .brand strong {
    font-size: 18px;
  }

  .brand span {
    font-size: 11px;
  }

  .nav-wrap {
    padding: 14px 14px;
  }

  .mobile-inner {
    padding: 10px 14px 16px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* Page filler */
.page-content {
  max-width: var(--max);
  margin: 40px auto;
  padding: 0 20px;
}

.logo {
  height: 50px;
  width: auto;
}


/* ==========================
   VIDEO BACKGROUND STYLES
   ========================== */

.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 20px 110px;
  text-align: center;
  color: white;
}

/* Vimeo background */
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video iframe {
  width: 100vw;
  height: 56.25vw; /* 16:9 ratio */
  min-height: 100vh;
  min-width: 177.77vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Dark overlay for readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

/* Content above video */
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(243,244,246,0.85),
    rgba(243,244,246,0.65)
  );
  z-index: 1;
}

/* ==========================
   HERO SECTION
   ========================== */

.hero {
  background: #f3f4f6;
  padding: 100px 20px 110px;
  text-align: center;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--ink);
  margin: 0 0 24px;
}

.hero-subtext {
  font-size: 18px;
  line-height: 1.7;
  color: #374151;
  max-width: 760px;
  margin: 0 auto 40px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Primary Button */
.btn-primary {
  background: var(--hover);
  color: #fff;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* Secondary Button */
.btn-secondary {
  background: var(--ink);
  color: #e5e7eb;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.15s ease;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background-color: #444444;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .hero {
    padding: 70px 20px 80px;
  }

  .hero-subtext {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 320px;
  }
}

/* ==========================
   INDUSTRY SECTION
   ========================== */

.industry-section {
  background: #fff;
  padding: 80px 20px;
}

.industry-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.industry-title {
  text-align: center;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  letter-spacing: -0.6px;
  color: var(--ink);
  margin: 0;
}

  .industry-content {
    margin-top: 60px;
  }

.industry-content p, .booking p {
  font-size: 17px;
  line-height: 1.75;
  color: #374151;
}

.industry-content p:last-child {
  margin-bottom: 0;
}

/* Responsive refinement */
@media (max-width: 600px) {
  .industry-section {
    padding: 60px 20px;
  }

  

  .industry-title {
    font-size: 24px;
  }

  .industry-content p {
    font-size: 16px;
  }
}


/* ==========================
   WHAT YOU'LL SEE SECTION
   ========================== */

.see-section {
  background: #fff;
  padding: 90px 20px;
}

.see-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.see-title {
  text-align: center;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  letter-spacing: -0.6px;
  color: var(--ink);
  margin: 0;
}

.underline {
  width: min(520px, 70%);
  height: 1px;
  background: #d1d5db;
  margin: 18px auto 0;
}

/* Two-column layout */
.see-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}

/* Left text */
.see-text p {
  font-size: 16.5px;
  line-height: 1.85;
  color: #374151;
  margin: 0 0 26px;
}

.see-text p:last-child {
  margin-bottom: 0;
}

/* Right images (3 separate blocks) */
.see-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-content: start;
}

.see-img {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  background: #f3f4f6;
}

/* Make images fill their boxes */
.see-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Layout like the screenshot: two top images + one wide bottom image */
.see-img-1,
.see-img-2 {
  aspect-ratio: 16 / 10;
}

.see-img-3 {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

/* Responsive */
@media (max-width: 980px) {
  .see-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .see-images {
    max-width: 720px;
  }
}

@media (max-width: 520px) {
  .see-section {
    padding: 70px 16px;
  }

  .see-images {
    grid-template-columns: 1fr;
  }

  .see-img-3 {
    grid-column: auto;
  }
}



/* ==========================
   WHAT YOU'LL LEARN (TABS)
   ========================== */

.learn-section {
  background: #fff;
  padding: 90px 20px;
}

.learn-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.learn-title {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  letter-spacing: -0.6px;
  color: var(--ink);
  margin: 0 0 14px;
}

.learn-intro {
  margin: 0 auto 34px;
  max-width: 820px;
  color: #374151;
  font-size: 16.5px;
  line-height: 1.7;
}

/* Tabs pill */
.tabs {
  width: min(520px, 90%);
  margin: 0 auto 34px;
  background: #ededf0;
  border-radius: 999px;
  padding: 6px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.tab {
  border: 0;
  background: transparent;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}

.tab.is-active {
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

/* Panels */
.learn-panels {
  margin-top: 0;
  text-align: left;
}

.panel {
  display: block;
}

.learn-card {
  max-width: 1040px;
  margin: 0 auto;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 34px 34px 26px;
  background: #fff;
}

.card-title {
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
}

.card-lead {
  margin: 0 0 22px;
  color: #374151;
  font-size: 15.5px;
  line-height: 1.7;
}

.card-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.learn-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.learn-list li {
  position: relative;
  padding-left: 28px;
  margin: 0 0 14px;
  color: #1f2937;
  font-size: 14.5px;
  line-height: 1.65;
}

/* coloured vertical bar marker */
.learn-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
}

#panel-wrekin .learn-list li::before {
  width: 16px;
  height: 16px;
  background: #FDC413;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

#panel-geoworks .learn-list li::before {
  width: 12px;
  height: 12px;
  background: #0195A1;
  transform: rotate(45deg);
  transform-origin: center;
  left: 2px;
  top: 0.5em;
  clip-path: none;
}

.learn-list--blue li::before {
  width: 16px;
  height: 16px;
  background: #2f5cff;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}


/* Theme per tab */
.learn-list--blue li::before {
  background: #FDC413;
}

.learn-list--geoworks li::before {
  background: #0195A1;
}

.card-foot {
  margin: 18px 0 0;
  color: #374151;
  font-size: 15px;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 900px) {
  .learn-card {
    padding: 26px 20px 20px;
  }

  .card-cols {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .learn-list li::before {
    height: 22px;
  }
}

/* ==========================
   WHO YOU'LL MEET
   ========================== */

.meet {
  background: #fff;
  padding: 90px 20px;
}

.meet-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.meet-title {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  letter-spacing: -0.6px;
  color: var(--ink);
  margin: 0 0 12px;
}

.meet-subtitle {
  max-width: 820px;
  margin: 0 auto 50px;
  color: #374151;
  font-size: 16.5px;
  line-height: 1.7;
}

.meet-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
  align-items: start;
  justify-items: center;
}

.person-card {
  width: 100%;
  max-width: 245px;
  text-align: center;
  cursor: default;
}

.person-photo {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
  background: #f3f4f6;
}

.person-photo img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.person-name {
  margin: 14px 0 6px;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
}

.person-meta {
  margin: 0;
  font-size: 13px;
  color: #6b7280;
}

.meet-footnote {
  margin: 44px auto 0;
  max-width: 900px;
  color: #374151;
  font-size: 15px;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 1050px) {
  .meet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .person-card {
    max-width: 280px;
  }
}

@media (max-width: 520px) {
  .meet-grid {
    grid-template-columns: 1fr;
  }

  .person-card {
    max-width: 320px;
  }
}


/* ==========================
   Hover bounce animation
   ========================== */

@keyframes card-bounce {
  0%   { transform: translateY(0); }
  40%  { transform: translateY(-6px); }
  70%  { transform: translateY(0); }
  85%  { transform: translateY(-2px); }
  100% { transform: translateY(0); }
}

.person-card:hover .person-photo,
.person-card:focus-within .person-photo {
  animation: card-bounce 420ms ease-out;
}

/* Optional: slight lift + shadow polish */
.person-card:hover .person-photo {
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

/* Animation for 3 card gallery */
.see-images {
  overflow: visible;
}

.see-img {
  position: relative;
  z-index: 0;
}

.see-img:hover {
  z-index: 10;
}

.see-img {
  transition: transform 0.25s ease;
}

.see-img:hover {
  transform: scale(1.08);
}

/* ==========================
   TESTIMONIALS + PARTNERS
   ========================== */

.testimonials {
  background: #fff;
  padding: 90px 20px;
}

.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.testimonials-title {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  letter-spacing: -0.6px;
  color: var(--ink);
  margin: 0 0 48px;
}

/* Cards */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  margin: 0 auto;
}

.quote-card {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 26px 26px 22px;
  text-align: left;
  background: #fff;
}

.quote-text {
  margin: 0 0 22px;
  font-size: 15.5px;
  line-height: 1.8;
  color: #374151;
  font-style: italic;
}

.quote-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 0 0 18px;
}

.quote-person strong {
  display: block;
  font-weight: 800;
  color: var(--ink);
  font-size: 14px;
  margin-bottom: 4px;
}

.quote-person span {
  display: block;
  font-size: 12.5px;
  color: #6b7280;
}

/* Partners row */
.partners {
  margin-top: 44px;
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

.partner-logo {
  width: 140px;
  height: 44px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  text-decoration: none;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.partner-logo img {
  max-width: 80%;
  max-height: 70%;
  display: block;

  /* Greyscale by default */
  filter: grayscale(1);
  opacity: 0.75;
  transition: filter 0.18s ease, opacity 0.18s ease;
}

/* Colour on hover */
.partner-logo:hover img,
.partner-logo:focus-visible img {
  filter: grayscale(0);
  opacity: 1;
}

.partner-logo:hover,
.partner-logo:focus-visible {
  transform: translateY(-1px);
  border-color: #d1d5db;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
  outline: none;
}

/* If you don't have logos yet: clean placeholder */
.partner-logo img[src=""] {
  display: none;
}

.partner-logo::before {
  content: "Partner Logo";
  font-size: 12px;
  color: #9ca3af;
  font-weight: 600;
}

/* Hide placeholder label when an image is present */
.partner-logo:has(img[src]:not([src=""]))::before {
  content: "";
}

/* Responsive */
@media (max-width: 980px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
  }
}


/* ==========================
   BOOKING SECTION (NO FORM)
   ========================== */

.booking {
  background: #fff;
  padding: 90px 20px 100px;
  text-align: center;
}

.booking-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.booking-title {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  letter-spacing: -0.6px;
  color: var(--ink);
  margin: 0 0 14px;
}

/* Placeholder frame that matches the screenshot */
.booking-form-wrap {
  max-width: 860px;
  margin: 0 auto 64px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  padding: 18px;
}

/* Placeholder content */
.form-placeholder {
  border: 1px dashed #d1d5db;
  border-radius: 12px;
  padding: 46px 20px;
  color: #6b7280;
  background: #fafafa;
}

.form-placeholder strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 6px;
}

.form-placeholder span {
  display: block;
  font-size: 13px;
  line-height: 1.6;
}

/* Lower block */
.booking-subtitle {
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
}

.booking-outro {
  margin: 0 auto 28px;
  max-width: 860px;
  color: #374151;
  font-size: 16px;
  line-height: 1.7;
}

.booking-secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}

.booking-secondary-cta:hover,
.booking-secondary-cta:focus-visible {
  transform: translateY(-1px);
  border-color: #d1d5db;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
  outline: none;
}

/* Responsive */
@media (max-width: 600px) {
  .booking {
    padding: 70px 16px 80px;
  }

  .booking-form-wrap {
    padding: 14px;
  }

  .form-placeholder {
    padding: 36px 16px;
  }
}


/* ==========================
   LOCATION SECTION
   ========================== */

.location {
  background: #fff;
  padding: 90px 20px;
  text-align: center;
}

.location-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.location-title {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  letter-spacing: -0.6px;
  color: var(--ink);
  margin: 0 0 14px;
}

.location-intro {
  margin: 0 auto 56px;
  max-width: 860px;
  color: #374151;
  font-size: 16.5px;
  line-height: 1.7;
}

/* Grid layout */
.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
  text-align: left;
}

/* Image card */
.location-image {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
  background: #f3f4f6;
}

.location-image img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* Text */
.location-text p {
  margin: 0 0 26px;
  font-size: 16px;
  line-height: 1.85;
  color: #374151;
}

.location-text p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 980px) {
  .location-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .location-intro {
    margin-bottom: 44px;
  }

  .location-text {
    max-width: 820px;
    margin: 0 auto;
  }
}


/* ==========================
   LOCATION SECTION ADD-ONS
   ========================== */

/* Callout box */
.visit-callout {
  max-width: 1200px;
  margin: 46px auto 34px;
  text-align: left;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.06);
  padding: 28px 30px;
}

.visit-callout-title {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
}

.visit-callout-list {
  margin: 0;
  padding-left: 22px;
  color: #374151;
  font-size: 15.5px;
  line-height: 1.8;
}

.visit-callout-list li {
  margin-bottom: 10px;
}

.visit-callout-list li:last-child {
  margin-bottom: 0;
}

/* Cards row */
.visit-cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  text-align: left;
}

.visit-card {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.05);
  padding: 22px 20px;
  min-height: 210px;
}

.visit-icon {
  font-size: 22px;
  margin-bottom: 10px;
}

.visit-card-title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
}

.visit-card-text {
  margin: 0 0 14px;
  font-size: 13.5px;
  line-height: 1.65;
  color: #374151;
}

.visit-card-text:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1100px) {
  .visit-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .visit-callout {
    padding: 22px 18px;
  }

  .visit-cards {
    grid-template-columns: 1fr;
  }

  .visit-card {
    min-height: auto;
  }
}

/*

*/

.civitec-banner {
  width: 100%;
  height: 30px;
  background-repeat: repeat-x; /* repeat horizontally only */
  background-size: auto 100%;  /* scale height, keep proportions */
}

.banner-one {
  background-image: url("img/civitec-shapes-1-with-1-line.svg");
}

.banner-two {
  background-image: url("img/civitec-shapes-2-with-1-line.svg");
}

.banner-three {
  height:60px;
  background-image: url("img/civitec-shapes-2-with-2-lines.svg");
}



/* ==========================
   FOOTER
   ========================== */

.site-footer {
  background: #2f3a45;
  color: #ffffff;
  padding: 55px 20px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 0.9fr 1.2fr;
  gap: 60px;
  align-items: start;
}

/* Titles */
.footer-title {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #ffffff;
}

/* Text */
.footer-text {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.footer-label {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
}

/* Links */
.footer-link {
  color: #FE654F;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

/* List */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin: 0 0 10px;
}

/* Right column */
.footer-col-right {
  text-align: left;
}

.footer-small {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

/* Logo */
.footer-logo {
  margin-top: 18px;
}

.footer-logo img {
  max-width: 200px;
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 1050px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-logo img {
    max-width: 180px;
  }
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .site-footer {
    padding: 45px 18px;
  }
}
