/* ==========================================================================
   Blonda Network — index.css
   Mobile first. Breakpoints: 600 / 900 / 1140.
   ========================================================================== */

:root {
  --brand: #315b7c;
  --brand-dark: #24455f;
  --blue: #2581dc;
  --blue-light: #4199fe;
  --teal: #027b9a;
  --teal-dark: #016479;
  --ink: #16202b;
  --body: #3a4750;
  --muted: #6b7a80;
  --line: #dde5ec;
  --paper: #ffffff;
  --paper-alt: #f4f7fa;
  --paper-tint: #eaf2f9;
  --focus: #ffb703;

  --wrap: 1180px;
  --wrap-narrow: 780px;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(22, 32, 43, .09);
  --shadow-md: 0 6px 20px rgba(22, 32, 43, .1);
  --shadow-lg: 0 18px 44px rgba(22, 32, 43, .16);

  --nav-h: 60px;
  --step: clamp(2.5rem, 6vw, 4.5rem);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--body);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 .6em;
  font-weight: 700;
  text-wrap: balance;
}

h1 { font-size: clamp(1.9rem, 5.2vw, 3rem); font-weight: 900; letter-spacing: -.015em; }
h2 { font-size: clamp(1.45rem, 3.4vw, 2.1rem); letter-spacing: -.01em; }
h3 { font-size: clamp(1.08rem, 2vw, 1.25rem); }

p { margin: 0 0 1.1em; max-width: 72ch; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.2em; }

a { color: var(--teal); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--brand); }

strong { color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: var(--ink);
  color: #fff;
  padding: .8rem 1.2rem;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

.visually-hidden, .hidden-link-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

[hidden] { display: none !important; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 1.15rem;
}
.wrap.narrow { max-width: var(--wrap-narrow); }

@media (min-width: 600px) { .wrap { padding-inline: 2rem; } }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 48px;
  padding: .8rem 1.6rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}

.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); color: #fff; }

.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.75); }
.btn-outline:hover { background: #fff; color: var(--brand); border-color: #fff; }

.btn-light { background: #fff; color: var(--brand); }
.btn-light:hover { background: var(--paper-tint); color: var(--brand-dark); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--paper-alt); }

.btn-block { width: 100%; }

.inline-link { font-weight: 700; }

/* ==========================================================================
   Header / navigation
   ========================================================================== */

.navigation {
  position: sticky;
  top: 0;
  z-index: 900;
  background: linear-gradient(90deg, var(--brand) 0%, var(--blue) 100%);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: var(--wrap);
  margin-inline: auto;
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-inline: 1.15rem;
}

.brand { display: flex; align-items: center; }

.brand a {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  text-decoration: none;
}


.brand img {
  height: 34px;
  width: auto;
  display: block;
}

@media (min-width: 600px) { .brand img { height: 38px; } }

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.nav-list a,
.dropdown-toggle {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 .85rem;
  color: #fff;
  font: inherit;
  font-size: .93rem;
  font-weight: 500;
  text-decoration: none;
  background: none;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
}

.dropdown-toggle::after {
  content: '';
  margin-left: .4rem;
  border: 4px solid transparent;
  border-top-color: currentColor;
  transform: translateY(2px);
  transition: transform .2s ease;
}
.has-dropdown[data-open] > .dropdown-toggle::after { transform: rotate(180deg); }

.nav-list > li > a:hover,
.nav-list > li > .dropdown-toggle:hover,
.nav-list > li > a[aria-current="page"] { background: rgba(0,0,0,.18); }

.has-dropdown { position: relative; }

.navbar-dropdown {
  list-style: none;
  margin: 0;
  padding: .35rem 0;
  background: #1f2933;
  min-width: 240px;
}

.navbar-dropdown a {
  padding: .7rem 1.1rem;
  font-size: .92rem;
  min-height: 44px;
}
.navbar-dropdown a:hover,
.navbar-dropdown a[aria-current="page"] { background: var(--blue); }

.nav-cta a {
  background: var(--teal);
  border-radius: 999px;
  font-weight: 700;
}
.nav-cta a:hover { background: var(--teal-dark); }

/* mobile toggle */
.nav-mobile { display: none; }

#navbar-toggle {
  width: 48px;
  height: 48px;
  background: none;
  border: 0;
  cursor: pointer;
  position: relative;
  padding: 0;
}
#navbar-toggle span,
#navbar-toggle span::before,
#navbar-toggle span::after {
  content: '';
  position: absolute;
  left: 9px;
  width: 30px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  transition: transform .25s ease, opacity .2s ease;
}
#navbar-toggle span { top: 22px; }
#navbar-toggle span::before { left: 0; top: -9px; }
#navbar-toggle span::after  { left: 0; top: 9px; }
#navbar-toggle[aria-expanded="true"] span { background: transparent; }
#navbar-toggle[aria-expanded="true"] span::before { transform: translateY(9px) rotate(45deg); }
#navbar-toggle[aria-expanded="true"] span::after  { transform: translateY(-9px) rotate(-45deg); }

/* ---- mobile layout ---- */
@media (max-width: 1139px) {
  .nav-container { position: relative; flex-wrap: wrap; }
  .brand { padding-right: 3.5rem; }
  nav {
    width: calc(100% + 2.3rem);
    margin-inline: -1.15rem;
  }
  .nav-mobile {
    display: block;
    position: absolute;
    top: calc(var(--nav-h) / 2);
    right: .6rem;
    transform: translateY(-50%);
  }
  .nav-container { align-items: flex-start; }


  .nav-list {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    background: #1f2933;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
    padding-bottom: .5rem;
  }
  .nav-list[data-open] { display: flex; }

  .nav-list > li { border-top: 1px solid rgba(255,255,255,.08); }

  .nav-list a,
  .dropdown-toggle {
    width: 100%;
    min-height: 52px;
    padding: .85rem 1.15rem;
    font-size: 1rem;
  }
  .dropdown-toggle { justify-content: space-between; }

  .navbar-dropdown { display: none; background: #161e26; }
  .has-dropdown[data-open] > .navbar-dropdown { display: block; }
  .navbar-dropdown a { padding-left: 2.1rem; }

  .nav-cta { padding: .8rem 1.15rem; }
  .nav-cta a { justify-content: center; }
}

@media (min-width: 1140px) {
  .navbar-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    box-shadow: var(--shadow-md);
    border-radius: 0 0 var(--radius) var(--radius);
    overflow: hidden;
  }
  .has-dropdown:hover > .navbar-dropdown,
  .has-dropdown:focus-within > .navbar-dropdown,
  .has-dropdown[data-open] > .navbar-dropdown { display: block; }
  .nav-list { display: flex !important; }
}

/* ==========================================================================
   Heroes
   ========================================================================== */

.page-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(320px, 46vw, 460px);
  padding: 3.5rem 0 2.5rem;
  background-image: linear-gradient(180deg, rgba(22,32,43,.35) 0%, rgba(22,32,43,.82) 100%), var(--hero-image);
  background-size: cover;
  background-position: center;
  color: #fff;
}

.page-hero-inner {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 1.15rem;
}
@media (min-width: 600px) { .page-hero-inner { padding-inline: 2rem; } }

.page-hero h1 { color: #fff; max-width: 20ch; }

.hero-kicker {
  margin: 0 0 .5rem;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: #b9dcff;
}

.hero-sub {
  max-width: 58ch;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: rgba(255,255,255,.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.4rem;
}
.hero-actions .btn { flex: 1 1 auto; min-width: 200px; }
@media (min-width: 600px) { .hero-actions .btn { flex: 0 0 auto; } }

/* breadcrumbs */
.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin: 0 0 1.1rem;
  padding: 0;
  font-size: .82rem;
}
.breadcrumbs li + li::before { content: '/'; margin-right: .35rem; opacity: .6; }
.breadcrumbs a { color: #d5e9ff; }
.breadcrumbs [aria-current] { color: rgba(255,255,255,.75); }

/* ---- home hero ---- */
.home-hero { display: grid; }

.home-hero-copy {
  background: linear-gradient(160deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  padding: 2.8rem 1.15rem 3rem;
}
.home-hero-copy h1 { color: #fff; max-width: 15ch; }
.home-hero-copy .hero-sub { color: rgba(255,255,255,.9); }

.slider {
  position: relative;
  min-height: 300px;
  overflow: hidden;
}
.slider .slides { list-style: none; margin: 0; padding: 0; height: 100%; }

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease;
  background-image: linear-gradient(180deg, rgba(22,32,43,.15) 30%, rgba(22,32,43,.85) 100%), var(--slide-image);
  background-size: cover;
  background-position: center;
}
.slide.current { opacity: 1; visibility: visible; }

.slide-content {
  padding: 1.5rem 1.15rem 3.6rem;
  color: #fff;
}
.slide-content h2 { color: #fff; font-size: 1.3rem; margin-bottom: .3rem; }
.slide-content p { margin: 0; font-size: .95rem; color: rgba(255,255,255,.92); max-width: 46ch; }

.slider-buttons {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  gap: .5rem;
}
.slider-buttons button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.8);
  background: rgba(22,32,43,.45);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
}
.slider-buttons button:hover { background: var(--teal); border-color: var(--teal); }

@media (min-width: 900px) {
  .home-hero { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .home-hero-copy { padding: 4rem 3rem; display: flex; flex-direction: column; justify-content: center; }
  .slider { min-height: 480px; }
  .slide-content { padding: 2rem 2rem 4.2rem; }
}
@media (min-width: 1140px) {
  .home-hero-copy { padding: 5rem 4rem 5rem max(2rem, calc((100vw - var(--wrap)) / 2 + 2rem)); }
}

/* ==========================================================================
   Sections
   ========================================================================== */

.content-section { padding-block: var(--step); }
.content-section + .content-section { padding-top: 0; }
.content-section:nth-of-type(even of .feature-section) { background: var(--paper-alt); }

.feature-section,
.process-section,
.faq-section,
.areas-served,
.related-section {
  padding-block: var(--step);
  background: var(--paper-alt);
}
.content-section + .feature-section,
.content-section + .process-section,
.content-section + .faq-section,
.content-section + .areas-served,
.content-section + .related-section { padding-top: var(--step); }

.section-lead {
  font-size: 1.08rem;
  color: var(--body);
  max-width: 62ch;
  margin-bottom: 1.8rem;
}

/* split text + image */
.split { display: grid; gap: 2rem; }
.split-media { margin: 0; }
.split-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.split-media figcaption {
  margin-top: .6rem;
  font-size: .85rem;
  color: var(--muted);
}

@media (min-width: 900px) {
  .split { grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center; }
  .case-study.reversed .split-text { order: 2; }
  .case-study.reversed .split-media { order: 1; }
}

/* trust strip */
.trust-strip {
  background: var(--brand);
  color: #fff;
  padding-block: 1.8rem;
}
.trust-strip ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(2, 1fr);
}
.trust-strip li { display: flex; flex-direction: column; gap: .15rem; }
.trust-strip strong { color: #fff; font-size: 1.15rem; font-weight: 900; }
.trust-strip span { font-size: .85rem; color: rgba(255,255,255,.85); line-height: 1.4; }

@media (min-width: 900px) {
  .trust-strip ul { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
}

/* feature cards */
.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}
.feature-list li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
}
.feature-list h3 { margin-bottom: .35rem; color: var(--brand); }
.feature-list p { margin: 0; font-size: .96rem; }

@media (min-width: 600px) { .feature-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) {
  .feature-list { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
}

/* numbered process */
.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
  display: grid;
  gap: 1.4rem;
}
.process-list li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  gap: .35rem 1rem;
  align-items: start;
}
/* the ::before is one grid item and h3 + p are two more, so without this the
   paragraph wraps onto row 2 and lands in the 2.4rem number column */
.process-list li::before { grid-column: 1; grid-row: 1 / span 2; }
.process-list li > * { grid-column: 2; min-width: 0; }
.process-list li::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-weight: 900;
}
.process-list h3 { margin-bottom: .2rem; }
.process-list p { margin: 0; }

/* tick list */
.tick-list { list-style: none; margin: 0 0 1.1em; padding: 0; display: grid; gap: .7rem; }
.tick-list li {
  position: relative;
  padding-left: 1.9rem;
  max-width: 70ch;
}
.tick-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .42em;
  width: 1.05rem;
  height: .55rem;
  border-left: 3px solid var(--teal);
  border-bottom: 3px solid var(--teal);
  transform: rotate(-45deg);
}
.plain-list li::before { display: none; }
.plain-list li { padding-left: 0; }

/* testimonial */
.testimonial {
  margin: 0;
  padding: 1.8rem;
  background: var(--paper-tint);
  border-left: 5px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.testimonial p { font-size: 1.1rem; color: var(--ink); font-style: italic; }
.testimonial footer { font-size: .9rem; font-weight: 700; color: var(--brand); }

/* case study tag */
.case-tag {
  display: inline-block;
  margin: 0 0 .5rem;
  padding: .25rem .7rem;
  background: var(--paper-tint);
  color: var(--brand);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
}

/* photo gallery */
.gallery-section { background: var(--paper-alt); }

.photo-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(2, 1fr);
}
.photo-grid figure {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--paper-alt);
}
.photo-grid figcaption {
  padding: .7rem .9rem .85rem;
  font-size: .85rem;
  line-height: 1.45;
  color: var(--body);
}
@media (min-width: 900px) { .photo-grid { grid-template-columns: repeat(4, 1fr); } }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--brand) 0%, var(--teal) 100%);
  color: #fff;
  padding-block: var(--step);
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.92); margin-inline: auto; }
.cta-band .hero-actions { justify-content: center; }

/* FAQ */
.faq-list { display: grid; gap: .6rem; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item h3 { margin: 0; font-size: 1rem; }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-height: 56px;
  padding: 1rem 1.2rem;
  background: none;
  border: 0;
  font: inherit;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.faq-question:hover { color: var(--teal); }
.faq-toggle {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}
.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--teal);
  transition: transform .25s ease, opacity .2s ease;
}
.faq-toggle::before { left: 0; top: 7.5px; width: 18px; height: 3px; }
.faq-toggle::after  { left: 7.5px; top: 0; width: 3px; height: 18px; }
.faq-item.active .faq-toggle::after { transform: rotate(90deg); opacity: 0; }

.faq-answer { padding: 0 1.2rem 1.1rem; }
.faq-answer p { margin: 0; }

/* areas */
.areas-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1.2rem 0 0;
  padding: 0;
}
.areas-list li {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: .45rem 1rem;
  border-radius: 999px;
  font-size: .88rem;
  color: var(--brand);
  font-weight: 500;
}

/* service grid */
.service-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(2, 1fr);
}
.service-grid a {
  display: block;
  height: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.service-grid a:hover { border-color: var(--blue-light); box-shadow: var(--shadow-md); }
.service-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--paper-alt);
}
.service-grid span {
  display: block;
  padding: .85rem 1rem .4rem;
  font-weight: 700;
  font-size: .98rem;
}
.service-grid small {
  display: block;
  padding: 0 1rem 1rem;
  font-size: .85rem;
  color: var(--body);
  line-height: 1.5;
}
.service-grid a:has(> small) span { padding-bottom: .25rem; }
.service-grid a:not(:has(> small)) span { padding-bottom: 1rem; }

@media (min-width: 700px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) {
  .service-grid { grid-template-columns: repeat(4, 1fr); }
  .service-grid-wide { grid-template-columns: repeat(4, 1fr); }
}

/* two-box CTA (replaces old .twob) */
.split-cta-grid { display: grid; gap: 1.2rem; }
.split-cta-grid article {
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.6rem;
  text-align: center;
}
.split-cta-grid h2 { color: #fff; }
.split-cta-grid p { color: rgba(255,255,255,.9); margin-inline: auto; max-width: 42ch; }
@media (min-width: 800px) {
  .split-cta-grid { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
  .split-cta-grid article { padding: 2.8rem 2.2rem; }
}

/* contact list */
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .9rem; }
.contact-list li {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: .5rem;
  padding-bottom: .9rem;
  border-bottom: 1px solid var(--line);
  font-size: .98rem;
}
.contact-list span { font-weight: 700; color: var(--ink); }

/* legal */
.legal-intro { padding-bottom: 0; }
.legal-updated { font-size: .88rem; color: var(--muted); }

/* ==========================================================================
   Forms
   ========================================================================== */

.contact-form-container {
  background: linear-gradient(140deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  padding: var(--step) 1.15rem;
}
.contact-form-container h2 { color: #fff; text-align: center; }
.form-intro {
  text-align: center;
  color: rgba(255,255,255,.9);
  max-width: 52ch;
  margin: 0 auto 2rem;
}

.site-form {
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
  display: grid;
  gap: 1.1rem;
}

.form-row { display: grid; gap: 1.1rem; }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-field { display: grid; gap: .35rem; }

.site-form label {
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
}
.req { color: #ffd166; }

.site-form input[type="text"],
.site-form input[type="email"],
.site-form input[type="tel"],
.site-form select,
.site-form textarea {
  width: 100%;
  min-height: 48px;
  padding: .75rem .9rem;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 2px solid transparent;
  border-radius: var(--radius);
}
.site-form textarea { min-height: 140px; resize: vertical; }

.site-form input:focus-visible,
.site-form select:focus-visible,
.site-form textarea:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 1px;
}

.site-form input[aria-invalid="true"],
.site-form select[aria-invalid="true"],
.site-form textarea[aria-invalid="true"] { border-color: #e5484d; }

.field-error {
  font-size: .82rem;
  font-weight: 500;
  color: #ffd9d9;
}

/* file upload */
.file-upload-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .8rem;
}
.file-upload-container input[type="file"] {
  position: absolute;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}
.custom-file-upload {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-height: 48px;
  padding: .7rem 1.2rem;
  background: #fff;
  color: var(--brand) !important;
  border: 2px solid #fff;
  border-radius: var(--radius);
  font-weight: 700;
  cursor: pointer;
}
.custom-file-upload::before { content: '\2191'; font-weight: 900; }
.custom-file-upload:hover { background: var(--paper-tint); }
.file-upload-container input[type="file"]:focus-visible + .custom-file-upload,
.custom-file-upload:focus-within { outline: 3px solid var(--focus); }

.file-upload-status {
  font-size: .88rem;
  color: rgba(255,255,255,.88);
}

.form-consent { font-size: .84rem; color: rgba(255,255,255,.85); margin: 0; }
.form-consent a { color: #fff; }

.form-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status {
  min-height: 1.4em;
  margin: 0 auto;
  max-width: 60ch;
  font-weight: 700;
  text-align: center;
}
.form-status[data-state="error"] { color: #ffd9d9; }
.form-status[data-state="ok"] { color: #b8f5c6; }

.button-container { display: flex; flex-wrap: wrap; gap: .8rem; }
.button-container .btn { flex: 1 1 180px; }

.form-success {
  max-width: 640px;
  margin-inline: auto;
  padding: 2.5rem 1.5rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-lg);
  text-align: center;
}
.form-success h3 { color: #fff; font-size: 1.4rem; }
.form-success p { color: rgba(255,255,255,.92); margin-inline: auto; }

/* ==========================================================================
   Popup quote form
   ========================================================================== */

.popup-form {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  align-items: start;
  justify-items: center;
  padding: 1rem;
  background: rgba(16, 27, 38, .85);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.popup-inner {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin-block: auto;
  padding: 2.4rem 1.2rem 2rem;
  background: linear-gradient(150deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
@media (min-width: 600px) { .popup-inner { padding: 2.6rem 2.2rem; } }

.popup-dismiss {
  position: absolute;
  top: .5rem;
  right: .5rem;
  width: 44px;
  height: 44px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
}
.popup-dismiss:hover { background: rgba(255,255,255,.15); }

.quote { color: #fff; text-align: center; margin-bottom: 1.6rem; }

body.no-scroll { overflow: hidden; }

/* ==========================================================================
   Footer
   ========================================================================== */

.pg-footer { margin-top: 0; }

.footer { background: var(--brand); color: #fff; }

.footer-wave-svg { display: block; width: 100%; height: 30px; }
.footer-wave-path { fill: #fff; }
@media (min-width: 760px) { .footer-wave-svg { height: 50px; } }

.footer-content {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 2.5rem 1.15rem 3rem;
  display: grid;
  gap: 2rem;
}
@media (min-width: 600px) { .footer-content { padding-inline: 2rem; } }
@media (min-width: 700px) { .footer-content { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) {
  .footer-content { grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 2.5rem; }
}

.footer-content-column { min-width: 0; }

.footer-logo-link { text-decoration: none; }
.footer-logo-link img {
  height: 62px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
}
.footer-blurb { font-size: .92rem; color: rgba(255,255,255,.85); }
.footer-address { font-style: normal; font-size: .92rem; color: rgba(255,255,255,.85); }

.footer-menu + .footer-menu { margin-top: 1.8rem; }

.footer-menu-name {
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #cfe4f5;
  margin-bottom: .7rem;
}

.footer-menu-list { list-style: none; margin: 0; padding: 0; }
.footer-menu-list li { margin-bottom: .1rem; }
.footer-menu-list a {
  display: inline-block;
  padding: .35rem 0;
  color: #fff;
  font-size: .93rem;
  text-decoration: none;
}
.footer-menu-list a:hover { color: #cfe4f5; text-decoration: underline; }

.footer-call-to-action + .footer-call-to-action { margin-top: 1.8rem; }
.footer-call-to-action-title {
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #cfe4f5;
  margin-bottom: .6rem;
}
.footer-email a { color: #fff; font-weight: 700; word-break: break-word; }
.footer-call-to-action-description { font-size: .9rem; color: rgba(255,255,255,.85); }

.footer-call-to-action-button {
  min-height: 48px;
  padding: .75rem 1.6rem;
  background: var(--teal);
  color: #fff;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.footer-call-to-action-button:hover { background: var(--teal-dark); }

.footer-call-to-action-link-wrapper {
  display: inline-block;
  margin: 0;
  background: var(--teal);
  border-radius: var(--radius);
}
.footer-call-to-action-link {
  display: block;
  padding: .7rem 1.4rem;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
  text-decoration: none;
}
.footer-call-to-action-link:hover { color: #fff; background: var(--teal-dark); border-radius: var(--radius); }

.footer-social-links {
  position: relative;
  height: 54px;
  width: 236px;
  margin-top: 1rem;
}
@media (min-width: 1000px) {
  .footer-social-links {
    position: absolute;
    right: 0;
    bottom: 0;
    margin-top: 0;
  }
  .footer-content { position: relative; padding-bottom: 4.5rem; }
}
.footer-social-amoeba-svg { position: absolute; inset: 0; height: 54px; width: 236px; }
.footer-social-amoeba-path { fill: var(--teal); }
.footer-social-link { position: absolute; display: block; padding: 10px; }
.footer-social-icon-path { fill: #fff; }
.footer-social-link.linkedin { left: 3px; top: 11px; }
.footer-social-link.youtube { left: 122px; top: 12px; }

.footer-copyright {
  background: var(--teal);
  padding: 1rem 1.15rem;
  text-align: center;
}
.footer-legal-line {
  margin: .4rem 0 0;
  font-size: .78rem;
  line-height: 1.5;
  color: rgba(255,255,255,.78);
}

.footer-copyright-wrapper {
  max-width: var(--wrap);
  margin-inline: auto;
}

/* the global p max-width would otherwise pin these to the left edge
   and make text-align:center look wrong */
.footer-copyright p {
  max-width: 70ch;
  margin-inline: auto;
}

.footer-copyright-text { margin: 0; font-size: .85rem; color: #fff; }

/* ==========================================================================
   Cookie banner + floating contact
   ========================================================================== */

.cookie-modal-container {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1300;
  background: #16202b;
  color: #fff;
  padding: 1.2rem 1.15rem calc(1.2rem + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 24px rgba(0,0,0,.3);
}
.cookie-modal-content {
  max-width: var(--wrap);
  margin-inline: auto;
  display: grid;
  gap: .8rem;
}
.cookie-modal-container h3 { color: #fff; font-size: 1.05rem; margin: 0; }
.cookie-modal-container p { margin: 0; font-size: .9rem; color: rgba(255,255,255,.85); max-width: 80ch; }
.cookie-modal-container a { color: #8ec5ff; }

.cookie-modal-buttons { display: flex; flex-wrap: wrap; gap: .7rem; }
.cookie-modal-buttons button {
  flex: 1 1 160px;
  min-height: 48px;
  padding: .7rem 1.4rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
}
#accept-btn { background: var(--teal); color: #fff; }
#accept-btn:hover { background: var(--teal-dark); }
#reject-btn { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
#reject-btn:hover { background: rgba(255,255,255,.12); }

@media (min-width: 800px) {
  .cookie-modal-content { grid-template-columns: 1fr auto; align-items: center; }
  .cookie-modal-content h3 { grid-column: 1; }
  .cookie-modal-content p { grid-column: 1; grid-row: 2; }
  .cookie-modal-buttons { grid-column: 2; grid-row: 1 / 3; }
  .cookie-modal-buttons button { flex: 0 0 auto; }
}

.mobile-contact-buttons {
  position: fixed;
  right: .9rem;
  bottom: calc(.9rem + env(safe-area-inset-bottom));
  z-index: 800;
  display: none;
  flex-direction: column;
  gap: .6rem;
}
.mobile-contact-buttons a {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}
.mobile-contact-buttons svg { width: 26px; height: 26px; fill: #fff; }
.phone-button { background: var(--blue); }
.phone-button:hover { background: var(--brand); }
.whatsapp-button { background: #25d366; }
.whatsapp-button:hover { background: #128c7e; }

@media (max-width: 899px) {
  .mobile-contact-buttons { display: flex; }
}

/* ==========================================================================
   Motion / print
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

@media print {
  .navigation, .mobile-contact-buttons, .cookie-modal-container,
  .popup-form, .contact-form-container, .slider, .cta-band { display: none !important; }
  body { color: #000; }
  a::after { content: ' (' attr(href) ')'; font-size: .85em; }
}
