:root {
  --navy: #2f2483;
  --navy-dark: #241c66;
  --ink: #1a1a18;
  --muted: #4a4a48;
  --line: #e4e5ea;
  --paper: #ffffff;
  --mist: #f4f5f8;
  --header-h: 80px;
  --radius: 12px;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
}

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

figure {
  margin: 0;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-about .about-copy p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--navy);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--navy-dark);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.container.narrow {
  width: min(100% - 2rem, 760px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  flex: 0 0 auto;
}

.logo img {
  width: 180px;
  height: auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px 9px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
}

.site-nav a:hover {
  color: var(--navy);
  background: var(--mist);
}

.site-nav .nav-cta {
  background: var(--navy);
  color: #fff;
  margin-left: 0.4rem;
}

.site-nav .nav-cta:hover {
  background: var(--navy-dark);
  color: #fff;
}

.section {
  padding: 4.5rem 0;
  scroll-margin-top: calc(var(--header-h) + 12px);
}

.section h1,
.section h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section h3 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.35;
}

.section p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.section p:last-child {
  margin-bottom: 0;
}

.lead {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-about {
  background: var(--paper);
}

.section-services {
  background: var(--mist);
}

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

.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 1.4rem 1.6rem;
  overflow: hidden;
}

.service-photo {
  margin: 0 -1.4rem 1.1rem;
  height: 168px;
  overflow: hidden;
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card ul {
  margin: 0.75rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.service-card li {
  margin-bottom: 0.65rem;
}

.service-card li:last-child {
  margin-bottom: 0;
}

.section-trust {
  background: var(--paper);
}

.trust-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.trust-card {
  margin: 0;
  padding: 1.4rem 1.35rem;
  background: var(--mist);
  border-radius: var(--radius);
  border-left: 4px solid var(--navy);
  color: var(--muted);
}

.section-invite {
  background: var(--navy);
  padding: 3.25rem 0;
}

.section-invite p {
  margin: 0;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.section-invite a {
  color: #fff;
  text-decoration-thickness: 2px;
}

.section-invite a:hover {
  color: #e8e6ff;
}

.section-contact {
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.5rem;
  align-items: stretch;
}

.contact-card {
  background: var(--mist);
  border-radius: var(--radius);
  padding: 1.75rem 1.6rem;
}

.contact-card p {
  margin: 0 0 0.55rem;
}

.contact-name {
  color: var(--ink) !important;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 1rem !important;
}

.contact-legal {
  margin-top: 1.25rem !important;
  font-size: 0.95rem;
}

.map-wrap {
  min-height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

.site-footer {
  background: var(--ink);
  color: #c9c9c6;
  padding: 2rem 0;
  font-size: 0.92rem;
  text-align: center;
}

.footer-inner p {
  margin: 0 0 0.4rem;
}

.footer-inner p:last-child {
  margin-bottom: 0;
}

.footer-name {
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.55rem !important;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.sep {
  margin: 0 0.35rem;
  color: #7a7a76;
}

@media (max-width: 960px) {
  .about-layout,
  .service-grid,
  .trust-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-photo {
    aspect-ratio: 16 / 9;
    max-height: 280px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 72px;
  }

  .logo img {
    width: 150px;
  }

  .nav-toggle {
    display: block;
    z-index: 22;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1rem 1rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 0.9rem 1rem;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    justify-content: center;
  }

  .section {
    padding: 3.25rem 0;
  }

  .section-invite p {
    font-size: 1.08rem;
  }

  .sep {
    display: none;
  }

  .site-footer a {
    display: inline-block;
    padding: 0.35rem 0.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
