:root {
  --navy: #14293d;
  --navy-light: #1d3852;
  --blue: #d7263d;
  --blue-dark: #b01e31;
  --orange: #f0a04b;
  --orange-dark: #d9832a;
  --ink: #16202e;
  --grey: #5b6677;
  --grey-light: #eef1f5;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 12px 30px rgba(8, 20, 38, 0.10);
  --shadow-lg: 0 24px 60px rgba(8, 20, 38, 0.20);
  --accent-text: #b3132b; /* red dark enough for WCAG AA on white */
  --font-head: 'Archivo', sans-serif;
  --font-body: 'Public Sans', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { font-family: var(--font-head); margin: 0; line-height: 1.12; letter-spacing: -0.015em; }
p { margin: 0; }

/* Accessibility: skip link + visible keyboard focus */
.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 200;
  background: var(--navy);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 0 0 10px 10px;
  font-weight: 600;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Motion: reveal on scroll (JS adds .reveal, IntersectionObserver adds .is-visible) */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition-duration: 0.01ms !important; }
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--blue-dark);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(28, 111, 201, 0.28);
}
.btn--primary:hover { background: #15599e; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(28, 111, 201, 0.35); }
.btn:active { transform: translateY(0) scale(0.985); }
.btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: inherit;
}
.section--dark .btn--ghost, .hero .btn--ghost { border-color: rgba(255,255,255,0.6); color: var(--white); }
.btn--ghost:hover { background: rgba(255,255,255,0.12); }
#reviews .btn--ghost { border-color: var(--blue-dark); color: var(--blue-dark); }
#reviews .btn--ghost:hover { background: var(--blue-dark); color: var(--white); }
.btn--lg { padding: 15px 30px; font-size: 1rem; }
.btn--block { width: 100%; }

/* Topbar */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
  gap: 12px;
}
.topbar__item a { font-weight: 600; color: var(--white); }
.topbar__badge { display: none; }
@media (min-width: 720px) { .topbar__badge { display: block; } }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 20, 38, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  gap: 16px;
}
.brand__logo { height: 48px; width: auto; }
.nav {
  display: none;
  gap: 28px;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav a { color: rgba(255,255,255,0.88); position: relative; padding: 6px 0; transition: color 0.2s ease; }
.nav a:hover { color: var(--orange); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); }
.nav--mobile-open a::after { display: none; }
.header__cta { display: none; }
.header__cta.btn--primary {
  background: var(--orange);
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(247, 148, 29, 0.28);
}
.header__cta.btn--primary:hover {
  background: #ffa733;
  box-shadow: 0 12px 26px rgba(247, 148, 29, 0.4);
}
@media (min-width: 900px) {
  .nav { display: flex; margin-left: auto; margin-right: 24px; }
  .header__cta { display: inline-flex; }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--white); border-radius: 2px; }
@media (min-width: 900px) { .nav-toggle { display: none; } }

.nav--mobile-open {
  display: flex !important;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--navy);
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 4px;
  box-shadow: var(--shadow);
}
.nav--mobile-open a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8,20,38,0.92) 15%, rgba(8,20,38,0.72) 50%, rgba(8,20,38,0.45) 100%);
}
.hero__content { position: relative; z-index: 1; padding: 100px 24px 80px; max-width: 720px; }
.eyebrow {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--accent-text);
  margin-bottom: 14px;
}
.hero .eyebrow, .section--dark .eyebrow { color: var(--orange); }
.eyebrow--center { display: block; text-align: center; }
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 800; margin-bottom: 20px; }
.hero__lede { font-size: 1.1rem; color: rgba(255,255,255,0.86); max-width: 560px; margin-bottom: 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 20px; font-size: 0.92rem; color: rgba(255,255,255,0.9); font-weight: 500; }
@media (min-width: 620px) {
  .hero__trust {
    gap: 0;
    margin-top: 4px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.18);
  }
  .hero__trust li { position: relative; padding: 0 22px; }
  .hero__trust li:first-child { padding-left: 0; }
  .hero__trust li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 15px;
    background: rgba(255,255,255,0.22);
  }
}

/* Mobile hero: designed for thumb + small viewport, not shrunk desktop */
@media (max-width: 619px) {
  .hero { min-height: auto; }
  .hero__content { padding: 72px 24px 56px; }
  .hero__lede { font-size: 1rem; margin-bottom: 26px; }
  .hero__actions { flex-direction: column; margin-bottom: 28px; }
  .hero__actions .btn { width: 100%; }
  .hero__trust { flex-direction: column; gap: 10px; border-left: 3px solid var(--orange); padding-left: 14px; }
}

/* Sections — generous rhythm on desktop, tighter on mobile */
.section { padding: 110px 0; scroll-margin-top: 96px; }
@media (max-width: 719px) { .section { padding: 64px 0; } }
.section--alt { background: var(--grey-light); }
.section--dark { background: var(--navy); color: var(--white); }
.section__title {
  text-align: center;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 800;
  max-width: 640px;
  margin: 0 auto 16px;
}
.section__title::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  border-radius: 3px;
  background: var(--orange);
  margin: 18px auto 0;
}
.section__title--left { text-align: left; margin: 0 0 18px; max-width: none; }
.section__title--left::after { margin-left: 0; margin-right: auto; }
.section--dark .section__title::after { background: var(--orange); }
.section__lede {
  text-align: center;
  color: var(--grey);
  max-width: 560px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}
.section--dark .section__lede, .section--dark p { color: rgba(255,255,255,0.75); }

/* Services grid */
.grid--services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.grid--services { counter-reset: svc; }
.card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(8,20,38,0.07);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}
.card::after {
  counter-increment: svc;
  content: "0" counter(svc);
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: rgba(8,20,38,0.12);
  letter-spacing: 0.02em;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(28,111,201,0.35); }

/* Secondary services — compact chip list */
.services-more { margin-top: 44px; text-align: center; }
.services-more__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 22px;
}
.services-more__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}
.services-more__list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: var(--white);
  border: 1px solid rgba(8,20,38,0.1);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  box-shadow: 0 4px 12px rgba(8,20,38,0.05);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.services-more__list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-dark);
  flex-shrink: 0;
}
.services-more__list li:hover { transform: translateY(-2px); border-color: rgba(28,111,201,0.4); }
.card__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-dark);
  margin-bottom: 18px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card p { color: var(--grey); font-size: 0.96rem; line-height: 1.55; }

/* Why choose us */
.why__grid { display: grid; gap: 48px; align-items: center; }
.why__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.why__list { display: flex; flex-direction: column; gap: 16px; margin: 26px 0 30px; }
.why__list li { padding-left: 30px; position: relative; color: var(--grey); line-height: 1.5; }
.why__list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue-dark);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why__list strong { color: var(--ink); }
@media (min-width: 860px) {
  .why__grid { grid-template-columns: 1fr 1.1fr; }
}

/* Gallery */
.gallery {
  columns: 1;
  gap: 18px;
}
@media (min-width: 620px) { .gallery { columns: 2; } }
@media (min-width: 980px) { .gallery { columns: 3; } }
.gallery__item {
  margin: 0 0 18px;
  break-inside: avoid;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery__item img { width: 100%; height: auto; display: block; transition: transform 0.4s ease; }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 16px 14px;
  background: linear-gradient(0deg, rgba(8,20,38,0.85), transparent);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.gallery__item:hover figcaption { opacity: 1; transform: translateY(0); }
/* Touch devices have no hover — captions always visible */
@media (hover: none) {
  .gallery__item figcaption { opacity: 1; transform: none; }
}

/* Reviews */
.ratings-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 28px;
  margin: 0 auto 48px;
  padding: 18px 28px;
  max-width: 620px;
  background: var(--white);
  border: 1px solid rgba(8,20,38,0.08);
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.ratings-bar__item { display: flex; align-items: center; gap: 10px; }
.ratings-bar__stars { color: var(--orange); font-size: 1.1rem; letter-spacing: 1px; }
.ratings-bar__label { font-size: 0.95rem; color: var(--grey); }
.ratings-bar__label strong { color: var(--ink); font-family: var(--font-head); }
.ratings-bar__badge {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--white);
  background: #0a7d3c;
  padding: 5px 12px;
  border-radius: 6px;
  letter-spacing: 0.01em;
}
.ratings-bar__divider { width: 1px; height: 28px; background: rgba(8,20,38,0.12); }
@media (max-width: 520px) {
  .ratings-bar { border-radius: 18px; flex-direction: column; }
  .ratings-bar__divider { width: 60px; height: 1px; }
}

.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow);
}
.review-card__stars { color: var(--orange); font-size: 1.05rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-card__rec { color: #1877f2; font-weight: 700; font-size: 0.9rem; margin-bottom: 14px; }
.review-card:only-child { max-width: 760px; margin-inline: auto; }
.ratings-bar__badge--facebook { background: #1877f2; }
.review-card p { color: var(--ink); line-height: 1.6; font-size: 0.98rem; }
.review-card__author { margin-top: 18px; font-weight: 700; font-size: 0.9rem; color: var(--blue-dark); }
.review-card__author span { color: var(--grey); font-weight: 400; }
.reviews__cta { text-align: center; margin-top: 40px; }

/* About */
.about__grid { display: grid; gap: 48px; align-items: center; }
.about__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.about__content p { color: var(--grey); line-height: 1.65; margin-bottom: 16px; }
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 26px;
}
.about__stats div {
  background: var(--grey-light);
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
}
.about__stats strong { display: block; font-family: var(--font-head); font-size: 1.15rem; color: var(--blue-dark); }
.about__stats span { display: block; font-size: 0.78rem; color: var(--grey); margin-top: 4px; }
@media (min-width: 860px) {
  .about__grid { grid-template-columns: 1.1fr 1fr; }
}

/* Contact */
.contact__grid { display: grid; gap: 48px; }
.contact__list { margin-top: 26px; display: flex; flex-direction: column; gap: 16px; }
.contact__list li { display: flex; align-items: center; gap: 12px; font-size: 1.02rem; }
.contact__list a:hover { color: var(--orange); }
.contact__form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 8px; }
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(8,20,38,0.15);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.96rem;
  resize: vertical;
  color: var(--ink);
  background: var(--white);
}
.form-row select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235b6677' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-row select:invalid { color: var(--grey); }
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { outline: 2px solid var(--blue); outline-offset: 1px; }
.form-note { margin-top: 14px; font-size: 0.88rem; text-align: center; color: var(--blue-dark); font-weight: 600; min-height: 1.2em; }
@media (min-width: 860px) {
  .contact__grid { grid-template-columns: 1fr 1.1fr; }
}

/* Footer */
.footer { background: var(--navy); color: rgba(255,255,255,0.75); padding: 32px 0 40px; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; font-size: 0.85rem; }
.footer__logo { height: 34px; width: auto; opacity: 0.9; }
.footer__inner a { font-weight: 600; color: var(--white); }
@media (min-width: 700px) {
  .footer__inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* Floating call button (mobile) */
.call-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-lg);
  z-index: 90;
}
@media (min-width: 900px) { .call-fab { display: none; } }

/* ===== Text brand (for businesses without a logo image) ===== */
.brand__text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.brand__text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}
.footer .brand__text { font-size: 1.1rem; }
