*,
*::before,
*::after { box-sizing: border-box; }

.skip-link {
  position: absolute;
  left: -999px;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 30;
  background: var(--navy);
  color: #fff;
  padding: 8px 12px;
}

.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

/* Header */
.site-header { background: #fff; }

.topbar {
  background: var(--navy-2);
  border-bottom: 10px solid var(--orange);
  color: #fff;
}
.topbar-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
  min-height: 45px;
  font-size: 15px;
}
.top-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}
.top-link svg { color: var(--orange); flex: none; }

.brand-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 94px;
  gap: 24px;
}
.logo img { display: block; height: 55px; width: auto; }

.nav-desktop ul,
.mobile-panel ul,
.submenu,
.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-desktop > ul {
  display: flex;
  align-items: center;
  gap: 8px 28px;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
  padding: 8px 0;
  position: relative;
}
.nav-link svg { width: 10px; height: 10px; }
.nav-link:hover,
.nav-link[aria-current="page"] { color: var(--orange); }
.nav-link[aria-current="page"]::after,
.nav-desktop > ul > li:hover > .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--orange);
}
.has-sub { position: relative; }
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 20;
}
.has-sub:hover > .submenu,
.has-sub:focus-within > .submenu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.submenu a {
  display: block;
  padding: 10px 18px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
}
.submenu a:hover,
.submenu a[aria-current="page"] { color: var(--orange); }

.nav-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  color: var(--navy);
  padding: 8px;
  cursor: pointer;
}
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }
.nav-toggle[aria-expanded="true"] { color: var(--orange); }

.mobile-panel {
  background: #fff;
  border-top: 1px solid #eee;
}
.mobile-panel a,
.sub-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 14px 20px;
  color: var(--navy);
  font: 600 15px/1.3 var(--font);
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
}
.mobile-panel a[aria-current="page"],
.mobile-panel a:hover,
.sub-toggle[aria-expanded="true"] { color: var(--orange); }
.mobile-sub a { padding-left: 36px; font-weight: 500; }

/* Hero slider */
.hero {
  position: relative;
  height: 550px;
  overflow: hidden;
  background: #000;
}
.hero-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}
.slide {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 50px 0 0;
}
.slide-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1);
}
.slide.is-active .slide-bg {
  animation: kenburns 10s linear forwards;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.18); }
}
.slide-box {
  position: relative;
  z-index: 1;
  width: min(45%, 560px);
  background: var(--navy);
  border-bottom: 8px solid var(--orange);
  padding: 28px 24px 24px;
  text-align: center;
}
.slide.is-active .slide-box { animation: fadeInUp 0.7s both; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
.slide-title {
  display: block;
  font-size: 35px;
  font-weight: 500;
  line-height: 38px;
  margin-bottom: 22px;
}
.btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  border: 2px solid var(--orange);
  padding: 12px 22px;
  line-height: 1;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.btn:hover { filter: brightness(0.96); }
.btn-navy {
  background: var(--navy);
  border-color: var(--navy);
  text-shadow: none;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.hero-prev { left: 8px; }
.hero-next { right: 8px; }
.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}
.hero-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.55);
  padding: 0;
  cursor: pointer;
}
.hero-dots button.is-active { background: #fff; }

/* About home */
.about {
  position: relative;
  background: #f5f7fa url("/assets/img/about-bg.webp") center / cover fixed no-repeat;
  padding: 80px 0 60px;
}
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #f5f7fa;
  opacity: 0.97;
}
.about-grid {
  position: relative;
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
  align-items: start;
}
.kicker {
  margin: 0;
  color: var(--orange);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.about h2 {
  margin: 8px 0 0;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.1666;
  color: rgba(0, 0, 0, 0.8);
}
.rule {
  display: block;
  width: 48px;
  height: 4px;
  background: var(--orange);
  margin: 12px 0;
  border: 0;
}
.about-lead,
.quote,
.note {
  color: rgba(0, 0, 0, 0.54);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.15px;
}
.about-lead { text-align: justify; margin: 10px 0 18px; }
.quote {
  margin: 0 0 20px;
  padding: 0 0 0 24px;
  border-left: 4px solid rgba(0, 0, 0, 0.1);
  font-style: italic;
}
.about-photo img { display: block; width: 100%; height: auto; }
.note { margin: 18px 0 0; font-style: italic; }

.reveal { animation: fadeIn 0.8s both; }
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Services */
.services { background: #fff; padding: 50px 0 30px; }
.services h2 {
  margin: 0 0 10px;
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.17;
  color: rgba(0, 0, 0, 0.8);
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}
.svc {
  position: relative;
  margin: 28px 16px 20px;
  padding: 56px 20px 24px;
  border: 2px solid var(--orange);
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
}
.svc-icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
}
.svc-icon svg { width: 34px; height: 34px; }
.svc h3 {
  margin: 0;
  font-size: 1.5em;
  font-weight: 500;
  color: #212121;
  line-height: 1.25;
  min-height: 2.5em;
}
.svc.barlow h3 { font-family: var(--font-barlow); }
.svc .rule { width: 56px; height: 3px; margin: 8px auto 10px; }
.svc p {
  margin: 0 0 18px;
  font-size: 20px;
  line-height: 1.7;
  color: #000;
}

/* CTA band */
.cta-band {
  position: relative;
  min-height: 450px;
  display: grid;
  place-items: center;
  background: #333 url("/assets/img/cta-bg.webp") center / cover no-repeat;
  padding: 40px 20px;
}
.cta-box {
  width: min(820px, 100%);
  background: var(--navy);
  border-bottom: 10px solid var(--orange);
  color: #fff;
  text-align: center;
  padding: 36px 24px 32px;
}
.cta-box h2 {
  margin: 0 0 8px;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.cta-box p {
  margin: 0 0 18px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.45;
}

/* Duo cards */
.duo { background: #fff; padding: 50px 0 60px; }
.duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.duo-card { padding: 0 0 18px; }
.duo-card.navy { background: var(--navy); }
.duo-card.orange { background: var(--orange); }
.duo-card .btn { margin: 16px auto 0; display: table; }
.ibox {
  display: flex;
  align-items: center;
  background: #fff;
  min-height: 150px;
  transition: box-shadow 0.3s;
}
.ibox:hover { box-shadow: 0 0 51px 15px rgba(0, 0, 0, 0.14); }
.ibox img {
  width: 46%;
  height: 170px;
  object-fit: cover;
  flex: none;
}
.ibox:hover img { animation: wobble 1s ease-in-out 1; }
@keyframes wobble {
  16.65% { transform: translateX(8px); }
  33.3% { transform: translateX(-6px); }
  49.95% { transform: translateX(4px); }
  66.6% { transform: translateX(-2px); }
  83.25% { transform: translateX(1px); }
  100% { transform: translateX(0); }
}
.ibox-copy { padding: 16px 18px; }
.ibox h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  color: #0c0c0c;
}
.ibox p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
}

/* Footer */
.footer-main {
  background: #c2c2c2;
  padding: 70px 0 50px;
  color: var(--navy);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr 0.9fr;
  gap: 24px 30px;
  align-items: start;
}
.footer-logo img { width: 85%; max-width: 220px; height: auto; }
.footer-grid h2 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy-3);
}
.footer-grid p { margin: 0; font-weight: 500; line-height: 1.55; }
.footer-grid a { color: var(--navy); font-weight: 500; }
.footer-grid li + li { margin-top: 6px; }
.footer-grid a[aria-current="page"] {
  box-shadow: inset 0 -2px 0 var(--orange);
}
.footer-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-contacts svg { color: var(--orange); flex: none; }
.footer-bar {
  background: var(--navy-2);
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: 15px;
  line-height: 1.55;
}
.footer-bar p { margin: 0; }
.copy { margin-top: 14px; }
.footer-bar a { color: #fff; }

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 67px;
  z-index: 9999;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}
.wa-float svg { width: 36px; height: 36px; }
.wa-float:hover { background: #036628; }

/* Interior */
.page { background: #fff; padding: 70px 0; }
.page h1 {
  margin: 0 0 28px;
  font-size: 26px;
  font-weight: 500;
  color: var(--navy-2);
  line-height: 1.3;
}
.checks { list-style: none; margin: 0; padding: 0 0 10px; }
.checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 1.4em;
  line-height: 1.35;
}
.checks svg { flex: none; margin-top: 2px; color: var(--navy); }

.prose { color: var(--muted); font-size: 16px; line-height: 1.7; }
.prose p { margin: 0 0 16px; }
.prose strong { color: #4a4a4a; }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 36px;
  align-items: start;
  margin-bottom: 8px;
}
.split img { width: 100%; height: auto; display: block; }
.bands {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 28px 0 20px;
}
.band {
  min-height: 150px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  padding: 22px 18px;
  line-height: 1.45;
}
.band.navy { background: var(--navy); }
.band.orange { background: var(--orange); }
.band strong { color: #fff; }

.poster {
  display: block;
  width: min(654px, 100%);
  margin: 8px auto 0;
}
.poster img { width: 100%; height: auto; display: block; }

.contact-form { max-width: 919px; }
.contact-form label {
  display: block;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 15px;
}
.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  background: #f8f8f8;
  border: 1px solid #c9c9c9;
  color: var(--text);
  font: 400 15px/1.4 var(--font);
  padding: 12px 14px;
}
.contact-form textarea { min-height: 110px; resize: vertical; }
.contact-form button {
  background: var(--navy-3);
  color: #fff;
  border: 0;
  font: 500 15px/1 var(--font);
  padding: 14px 28px;
  cursor: pointer;
}
.contact-form button:hover { filter: brightness(1.08); }
.contact-form button:disabled { opacity: 0.7; cursor: wait; }
.form-feedback { min-height: 1.2em; margin: 12px 0 0; color: var(--navy); }

@media (max-width: 1024px) {
  .topbar { display: none; }
  .nav-desktop { display: none; }
  .nav-toggle { display: inline-grid; place-items: center; }
  .brand-inner { min-height: 84px; justify-content: flex-start; }
  .logo { margin-right: auto; }
  .svc-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .slide-title { font-size: 28px; line-height: 1.15; }
  .slide-box { width: min(60%, 480px); }
}

@media (max-width: 767px) {
  .topbar { display: block; }
  .topbar-inner { justify-content: center; gap: 16px; font-size: 13px; flex-wrap: wrap; padding: 6px 0; }
  .brandbar { position: relative; }
  .brand-inner {
    flex-direction: column;
    justify-content: center;
    min-height: 0;
    padding: 14px 0 8px;
    gap: 4px;
  }
  .logo { margin: 0 auto; }
  .nav-toggle { position: static; margin: 0 auto; }
  .hero { height: 300px; }
  .slide { justify-content: center; padding: 0 36px; }
  .slide-box { width: 100%; padding: 16px 12px; }
  .slide-title { font-size: 20px; line-height: 1.25; margin-bottom: 14px; }
  .about { padding: 40px 0; background-attachment: scroll; }
  .about h2 { font-size: 2.5rem; }
  .kicker { font-size: 0.75rem; }
  .about-lead { font-size: 1rem; }
  .about-grid,
  .split,
  .bands,
  .duo-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .services h2 { font-size: 22px; padding: 0 8px; }
  .cta-band { min-height: 320px; }
  .cta-box h2 { font-size: 24px; }
  .ibox { flex-direction: column; align-items: stretch; }
  .ibox img { width: 100%; height: 180px; }
  .footer-main { padding: 20px 0; }
  .page { padding: 40px 0 50px; }
  .checks li { font-size: 1.15em; }
  .wa-float { right: 12px; bottom: 18px; width: 56px; height: 56px; }
}
