:root {
  --navy:        #0A1A3D;
  --navy-soft:   #122451;
  --pastel-bg:   #EAF3FF;
  --pastel-bg-soft: #DCEAFB;
  --blue:        #3399FF;
  --blue-light:  #0000FF;
  --steel:       #EEF1F5;
  --steel-line:  #D7DDE6;
  --amber:       #E8A33D;
  --white:       #FFFFFF;
  --ink:         #14213D;
  --ink-soft:    #4B5670;

  --font-display: 'Big Shoulders Display', sans-serif;
  --font-body:    'IBM Plex Sans', sans-serif;
  --font-mono:    'IBM Plex Mono', monospace;

  --maxw: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

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

a { color: inherit; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* -------------------- Header -------------------- */

.site-header {
  background: var(--pastel-bg);
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--steel-line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-header .logo img {
  height: 52px;
  width: auto;
}

.header-contact {
  display: flex;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.header-contact a {
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid rgba(20,33,61,0.25);
  padding-bottom: 2px;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.header-contact a:hover {
  color: var(--blue-light);
  border-color: var(--blue-light);
}

/* -------------------- Hero -------------------- */

.hero {
  background: linear-gradient(180deg, var(--pastel-bg) 0%, var(--pastel-bg-soft) 100%);
  color: var(--ink);
  padding: 64px 0 96px;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: 0.3px;
  margin: 0 0 20px;
  text-transform: uppercase;
  color: var(--navy);
}

.hero-copy h1 span {
  color: var(--blue-light);
}

.hero-copy p {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0 0 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--blue-light);
  color: var(--white);
}

.btn-primary:hover {
  background: #2680E0;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,255,0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: rgba(20,33,61,0.35);
}

.btn-secondary:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
}

.hero-visual .photo-frame {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}

.hero-visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: 70% 30%;
}

/* -------------------- Rating plate (signature element) -------------------- */

.rating-plate {
  background: var(--steel);
  border: 1px solid var(--steel-line);
  border-radius: 4px;
  padding: 18px 20px;
  font-family: var(--font-mono);
  color: var(--ink);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.rating-plate .plate-title {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--steel-line);
  padding-bottom: 8px;
  margin-bottom: 10px;
}

.rating-plate dl {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 14px;
  font-size: 0.82rem;
}

.rating-plate dt {
  color: var(--ink-soft);
  white-space: nowrap;
}

.rating-plate dd {
  margin: 0;
  font-weight: 600;
}

.hero-visual .rating-plate {
  position: absolute;
  left: -20px;
  bottom: -28px;
  width: min(320px, 88%);
}

/* -------------------- Section shells -------------------- */

section { padding: 88px 0; }

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin: 0 0 12px;
  color: var(--navy);
}

.section-lead {
  color: var(--ink-soft);
  max-width: 60ch;
  font-size: 1.05rem;
  margin: 0 0 48px;
}

.reveal {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.pre-reveal {
  opacity: 0;
  transform: translateY(16px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------- Services -------------------- */

.services { background: var(--steel); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-tag {
  background: var(--white);
  border: 1px solid var(--steel-line);
  border-radius: 4px;
  padding: 26px 22px;
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.service-tag::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 2px solid var(--steel-line);
  background: var(--steel);
  transition: border-color 0.18s ease;
}

.service-tag:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(10,26,61,0.12);
  border-color: var(--amber);
}

.service-tag:hover::before {
  border-color: var(--amber);
}

.service-tag svg {
  width: 34px;
  height: 34px;
  stroke: var(--blue);
  margin-bottom: 16px;
}

.service-tag h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin: 0;
  color: var(--navy);
}

/* -------------------- Trust -------------------- */

.trust .wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: start;
}

.pull-quote {
  border-left: 4px solid var(--blue);
  padding-left: 26px;
  margin: 0;
}

.pull-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--navy);
  margin: 0 0 18px;
  text-transform: none;
}

.pull-quote cite {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.credentials h3 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 14px;
}

.badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 32px;
}

.badge {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  background: var(--steel);
  border: 1px solid var(--steel-line);
  padding: 8px 14px;
  border-radius: 3px;
  color: var(--ink);
}

.badge.badge-strong {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.brand-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.brand-chips span {
  font-size: 0.85rem;
  padding: 7px 12px;
  border: 1px solid var(--steel-line);
  border-radius: 20px;
  color: var(--ink-soft);
}

/* -------------------- CTA band -------------------- */

.cta-band {
  background: var(--pastel-bg-soft);
  color: var(--ink);
  text-align: center;
  padding: 72px 0;
  border-top: 1px solid var(--steel-line);
}

.cta-band .section-eyebrow { color: var(--blue-light); }

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  text-transform: uppercase;
  margin: 0 0 8px;
  color: var(--navy);
}

.cta-phone {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  color: var(--blue-light);
  text-decoration: none;
  margin: 18px 0 10px;
  letter-spacing: 1px;
}

.cta-phone:hover { color: var(--navy); }

.cta-email {
  display: block;
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.cta-email:hover {
  color: var(--navy);
  border-color: rgba(20,33,61,0.35);
}

/* -------------------- Footer -------------------- */

.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding: 40px 0;
}

.site-footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-plate {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.4px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-plate strong { color: var(--white); }

.footer-meta {
  font-size: 0.78rem;
}

/* -------------------- Responsive -------------------- */

@media (max-width: 880px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 24px; }
  .hero-visual .rating-plate { position: static; margin-top: -40px; margin-left: 20px; width: calc(100% - 40px); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .trust .wrap { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .service-grid { grid-template-columns: 1fr; }
  .site-header .wrap { flex-direction: column; align-items: flex-start; }
  .hero { padding: 48px 0 80px; }
  section { padding: 64px 0; }
}

