:root {
  --navy: #0b1f4d;
  --navy-deep: #071536;
  --yellow: #e8c200;
  --yellow-light: #f1d12a;
  --ink: #141414;
  --text: #54595f;
  --white: #ffffff;
  --soft: #f4f4f4;
  --line: rgba(11, 31, 77, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
  --radius: 14px;
  --shell: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

::selection {
  background: var(--navy);
  color: var(--white);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  caret-color: var(--navy);
}

body.nav-open { overflow: hidden; }

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

a {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 0.18em;
}

button,
input,
select,
textarea {
  font: inherit;
}

.shell {
  width: min(var(--shell), calc(100% - 40px));
  margin: 0 auto;
}

.section { padding: 88px 20px; }

h1,
h2,
h3,
h4 {
  margin: 0 0 16px;
  font-family: "Prata", Georgia, serif;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.75rem, 6vw, 4.2rem); }
h2 { font-size: clamp(2.4rem, 4vw, 3.1rem); }
h3 { font-size: 1.5rem; }

p {
  margin: 0 0 18px;
  color: var(--text);
}

.lead {
  font-size: 1.12rem;
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }

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

.btn-primary {
  color: var(--navy);
  background: var(--yellow);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.btn-primary:hover { background: var(--yellow-light); }

.btn-navy,
.nav-links a.btn-navy {
  color: var(--white);
  background: var(--navy);
}

.btn-navy:hover {
  background: var(--navy-deep);
  color: var(--white);
}

.btn-outline-dark {
  color: var(--navy);
  background: transparent;
  border: 2px solid var(--navy);
}

.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-links a:not(.btn) {
  position: relative;
  color: var(--text);
  font-weight: 600;
}

.nav-links a:not(.btn):hover,
.nav-links a:not(.btn).active {
  color: var(--navy);
}

.nav-links a:not(.btn).active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  border-radius: 999px;
  background: var(--yellow);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 8px;
}

.nav-cta {
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding: clamp(56px, 8vw, 88px) 0 clamp(48px, 7vw, 72px);
}

.hero-copy h1 {
  font-size: clamp(2.25rem, 4.2vw + 0.5rem, 3.75rem);
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.hero-copy .lead {
  color: var(--ink);
  max-width: 36rem;
  font-size: clamp(1.05rem, 1.5vw + 0.85rem, 1.2rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-support {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 36rem;
}

.hero-support p {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  font-size: 1.05rem;
}

.hero-media {
  margin: 0;
  width: 100%;
  max-width: 360px;
  justify-self: end;
}

.hero-photo {
  display: block;
  width: 100%;
  padding: 20px;
  border-radius: calc(var(--radius) + 4px);
  background: var(--yellow);
  box-shadow: var(--shadow);
  object-fit: contain;
  aspect-ratio: 1 / 1;
  background-color: var(--yellow);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > *,
  .hero-media {
    animation: hero-enter 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .hero-copy h1 { animation-delay: 0.04s; }
  .hero-copy .lead { animation-delay: 0.1s; }
  .hero-actions { animation-delay: 0.16s; }
  .hero-support { animation-delay: 0.22s; }
  .hero-media { animation-delay: 0.14s; }
}

@keyframes hero-enter {
  from {
    opacity: 0.88;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy > *,
  .hero-media { animation: none; }
}

.trust-strip {
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
}

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

.trust-grid article {
  padding: 24px 22px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.trust-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.05rem;
}

.trust-grid strong::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--yellow);
  vertical-align: middle;
}

.trust-grid span {
  display: block;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.welcome { background: var(--soft); }

.welcome-header {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}

.divider {
  width: 72px;
  height: 4px;
  margin: 18px auto 24px;
  border-radius: 999px;
  background: var(--yellow);
}

.welcome-lede {
  font-size: 1.15rem;
  color: var(--ink);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.service-list-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  padding: 8px 0;
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding-right: 22px;
  border-bottom: 1px solid var(--line);
}

.service-list li:last-child { border-bottom: 0; }

.service-row-title {
  display: block;
  padding: 18px 22px;
  font-family: "Prata", Georgia, serif;
  font-size: clamp(0.98rem, 1.2vw + 0.7rem, 1.15rem);
  line-height: 1.35;
  color: var(--navy);
}

.service-booking-cta {
  min-height: 44px;
  padding: 0 18px;
  box-shadow: none;
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
  background: transparent;
  border: 2px solid rgba(232, 194, 0, 0.75);
  color: var(--navy);
}

.service-booking-cta:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.questions { background: var(--white); }

.question-list {
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.question-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.question-list li:last-child { border-bottom: 0; }

.cta-band {
  padding: 72px 24px;
  color: var(--white);
  text-align: center;
  background: var(--navy);
}

.cta-band h2,
.cta-band p { color: var(--white); }

.cta-band a.btn-primary { color: var(--navy); }

.contact { background: var(--soft); }

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.office-block {
  padding: 22px 0 22px 0;
  border-bottom: 1px solid var(--line);
}

.office-block:last-of-type {
  border-bottom: 0;
}

.office-block h3 { margin-bottom: 8px; }

.office-block p { margin: 0; color: var(--ink); }

.facebook-note {
  margin-top: 24px;
  color: var(--text);
}

.facebook-note a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
}

.contact-form {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form > p:first-child {
  color: var(--ink);
  font-weight: 600;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--soft);
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--navy);
  outline-offset: 1px;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-message {
  display: none;
  margin-top: 12px;
  font-weight: 600;
}

.form-message-success { color: #166534; }
.form-message-error { color: #991b1b; }

.page-hero {
  padding: clamp(56px, 7vw, 80px) 0 40px;
}

.page-hero .lead { max-width: 40rem; }

.site-footer {
  padding: 48px 0 28px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 32px;
  align-items: start;
}

.site-footer h3 { color: var(--white); }

.site-footer p { color: rgba(255, 255, 255, 0.72); }

.site-footer a { color: var(--yellow); }

.site-footer a:hover { color: var(--white); }

.footer-menu {
  display: grid;
  gap: 10px;
}

.footer-brand img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin-bottom: 12px;
  background: var(--white);
  border-radius: 12px;
  padding: 12px;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
}

@media (max-width: 1000px) {
  .nav-toggle { display: block; }

  .nav-links {
    position: fixed;
    inset: 84px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 20px 24px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open { display: flex; }

  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); }

  .nav-links a:not(.btn).active::after { display: none; }

  .nav-actions {
    flex-direction: column;
    align-items: stretch;
    margin: 16px 0 0;
  }

  .nav-actions .nav-cta { width: 100%; }
}

@media (max-width: 860px) {
  .section { padding: 72px 20px; }

  .hero-grid,
  .trust-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    justify-self: center;
    max-width: min(280px, 78vw);
  }

  .service-list li {
    grid-template-columns: 1fr;
    gap: 0;
    padding-right: 0;
  }

  .service-booking-cta {
    width: calc(100% - 36px);
    margin: 0 18px 14px;
  }
}
