@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  --blue: #1d4e89;
  --blue-deep: #12345e;
  --green: #5b8f7a;
  --orange: #e08a24;
  --paper: #ffffff;
  --paper-dark: #f1eee8;
  --mist: #e6e9ec;
  --ink: #172638;
  --muted: #667382;
  --line: rgba(29, 78, 137, 0.14);
  --shadow: 0 18px 50px rgba(18, 52, 94, 0.1);
  --radius: 22px;
  color: var(--ink);
  font-family: 'Montserrat', Arial, sans-serif;
  font-synthesis: none;
  line-height: 1.6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  overflow-x: clip;
}

body,
button,
input,
textarea {
  font-family: inherit;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
summary {
  cursor: pointer;
}

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.hero-grid > *,
.about-grid > *,
.area-grid > *,
.workflow-grid > *,
.contact-panel > * {
  min-width: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(29, 78, 137, 0.08);
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 240px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav > a {
  position: relative;
  padding-block: 8px;
  transition: color 180ms ease;
}

.site-nav > a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: '';
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:hover,
.site-nav > a:focus-visible {
  color: var(--blue);
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-picker {
  position: relative;
  margin-left: 3px;
  color: var(--blue);
}

.language-picker summary {
  display: flex;
  min-width: 44px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  list-style: none;
}

.language-picker summary::-webkit-details-marker {
  display: none;
}

.language-picker summary::after {
  border: solid currentColor;
  border-width: 0 1px 1px 0;
  content: '';
  padding: 3px;
  transform: rotate(45deg) translateY(-2px);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  min-width: 148px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.language-menu a {
  padding: 9px 10px;
  border-radius: 10px;
  font-size: 0.66rem;
  letter-spacing: 0.06em;
}

.language-menu a:hover,
.language-menu a[aria-current='page'] {
  background: var(--mist);
  color: var(--blue);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--blue);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(224, 138, 36, 0.12), transparent 23%),
    linear-gradient(120deg, #fff 0%, #f5f7f5 56%, #e8f0f2 100%);
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: -160px;
  right: -100px;
  width: 550px;
  height: 550px;
  border: 1px solid rgba(29, 78, 137, 0.1);
  border-radius: 50%;
  content: '';
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: 70px;
  right: 80px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(91, 143, 122, 0.2);
  border-radius: 50%;
  content: '';
}

.hero-grid {
  position: relative;
  display: block;
  min-height: 520px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(590px, 52%);
  padding-top: 72px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  width: 30px;
  height: 2px;
  background: var(--orange);
  content: '';
}

.hero h1 {
  max-width: 630px;
  margin: 22px 0 20px;
  color: var(--blue-deep);
  font-size: clamp(2.8rem, 5.2vw, 4.75rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.99;
}

.hero h1 span {
  display: block;
  color: var(--blue);
}

.hero-lead {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 20px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 24px rgba(29, 78, 137, 0.22);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--blue-deep);
}

.button--secondary {
  border: 1px solid rgba(29, 78, 137, 0.25);
  color: var(--blue);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: var(--blue);
  background: #fff;
}

.button__arrow {
  display: inline-block;
  font-size: 1.1rem;
  line-height: 0;
  transition: transform 180ms ease;
}

.button:hover .button__arrow {
  transform: translateX(3px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.74rem;
}

.hero-meta strong {
  display: block;
  margin-bottom: 2px;
  color: var(--blue);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-art {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 76%;
  min-height: 520px;
  margin-left: auto;
  overflow: hidden;
  border-radius: 10px;
}

.hero-art::before {
  position: absolute;
  z-index: -1;
  right: 7%;
  bottom: -22px;
  left: 7%;
  height: 50px;
  border-radius: 50%;
  background: rgba(29, 78, 137, 0.18);
  content: '';
  filter: blur(22px);
}

.hero-art::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.98) 0%, rgba(251, 250, 247, 0.86) 18%, rgba(251, 250, 247, 0.42) 36%, transparent 56%),
    linear-gradient(0deg, rgba(18, 52, 94, 0.16), transparent 24%);
  content: '';
  pointer-events: none;
}

.hero-art img {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border-radius: inherit;
  object-fit: cover;
}

.hero-stamp {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 35px;
  display: grid;
  width: 108px;
  height: 108px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(29, 78, 137, 0.9);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.section {
  padding: 112px 0;
  scroll-margin-top: 90px;
}

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

.about-section {
  background: #fff;
}

.section--blue {
  background: var(--blue-deep);
  color: #fff;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 48px;
}

.section-heading h2 {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--blue-deep);
  font-size: clamp(2rem, 4vw, 3.65rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.section--blue .section-heading h2 {
  color: #fff;
}

.section-intro {
  max-width: 390px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 0.95rem;
}

.section--blue .section-intro {
  color: rgba(255, 255, 255, 0.74);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card {
  min-height: 350px;
  padding: 34px 24px 30px;
  border-right: 1px solid var(--line);
  transition: background 180ms ease, transform 180ms ease;
}

.service-card:first-child {
  border-left: 1px solid var(--line);
}

.service-card:hover {
  background: #fff;
  transform: translateY(-5px);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 30px;
  color: var(--blue);
}

.service-card:nth-child(2) .service-card__icon,
.service-card:nth-child(5) .service-card__icon {
  color: var(--green);
}

.service-card:nth-child(3) .service-card__icon {
  color: var(--orange);
}

.service-card h3 {
  min-height: 56px;
  margin: 0 0 15px;
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.7;
}

.about-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: 86px;
}

.about-kicker {
  margin: 0 0 34px;
}

.about-media {
  position: relative;
}

.about-media::after {
  position: absolute;
  right: -18px;
  bottom: -18px;
  z-index: -1;
  width: 55%;
  height: 55%;
  border: 2px solid var(--orange);
  border-radius: 10px;
  content: '';
}

.about-media img {
  width: 100%;
  aspect-ratio: 400 / 315;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.about-copy h2 {
  max-width: 560px;
  margin: 0 0 22px;
  color: var(--blue-deep);
  font-size: clamp(2rem, 4vw, 3.55rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.about-copy p {
  max-width: 590px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.85;
}

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

.workflow-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 0;
}

.process-panel,
.area-panel {
  min-height: 560px;
  padding: 18px 64px 26px 0;
}

.area-panel {
  padding: 18px 0 26px 64px;
  border-left: 1px solid var(--line);
}

.process-panel h2,
.area-panel h2 {
  margin: 18px 0 32px;
  color: var(--blue-deep);
  font-size: clamp(2rem, 3.5vw, 3.3rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.process-list {
  display: grid;
  gap: 24px;
  max-width: 500px;
}

.process-step {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
}

.process-step__icon {
  width: 48px;
  height: 48px;
  color: var(--green);
}

.process-step:nth-child(2) .process-step__icon {
  color: var(--blue);
}

.process-step:nth-child(3) .process-step__icon {
  color: var(--green);
}

.process-step h3 {
  margin: 1px 0 5px;
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.process-step p {
  max-width: 380px;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.area-panel {
  scroll-margin-top: 90px;
}

.area-panel h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4vw, 3.65rem);
  text-transform: uppercase;
}

.area-panel > p:not(.section-kicker) {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.area-panel .area-tags {
  margin-top: 22px;
}

.area-panel .area-media {
  margin-top: 28px;
  overflow: hidden;
  border-radius: 10px;
}

.area-panel .area-media img {
  max-height: 220px;
  border-radius: inherit;
}

.signature {
  display: inline-block;
  margin-top: 14px;
  color: var(--blue);
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-style: italic;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.process-card {
  min-height: 250px;
  padding: 34px 32px;
  background: var(--blue-deep);
}

.process-number {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.process-card h3 {
  margin: 58px 0 12px;
  color: #fff;
  font-size: 1.12rem;
  font-weight: 600;
}

.process-card p {
  max-width: 280px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  line-height: 1.7;
}

.area-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  gap: 72px;
}

.area-copy h2 {
  max-width: 520px;
  margin: 18px 0 20px;
  color: var(--blue-deep);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.area-copy p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.85;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.area-tags span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.area-media img {
  width: 100%;
  aspect-ratio: 388 / 150;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.contact-section {
  padding: 100px 0;
  background: #fff;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 0;
  padding: 44px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.contact-panel > div:first-child {
  padding-right: 64px;
  border-right: 1px solid var(--line);
}

.contact-panel h2 {
  max-width: 440px;
  margin: 18px 0 18px;
  color: var(--blue-deep);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1;
}

.contact-panel > div:first-child p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.contact-links {
  display: grid;
  gap: 13px;
  margin-top: 32px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 600;
}

.contact-link:hover {
  color: var(--green);
}

.contact-link__icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1rem;
}

.contact-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.76rem;
}

.contact-aside {
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0 20px 64px;
  background: transparent;
  color: var(--ink);
}

.contact-aside p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.contact-aside h3 {
  max-width: 440px;
  margin: 18px 0 14px;
  color: var(--blue-deep);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.contact-aside .section-kicker {
  margin: 0;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.site-footer {
  padding: 30px 0;
  background: var(--blue-deep);
  color: rgba(255, 255, 255, 0.68);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.7rem;
}

.footer-brand {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 16px;
}

@media (max-width: 1050px) {
  .site-nav {
    gap: 14px;
  }

  .hero-grid {
    display: grid;
    align-items: center;
    min-height: 0;
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
    gap: 35px;
  }

  .hero-copy {
    width: auto;
    padding-top: 0;
  }

  .hero-art {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: auto;
    min-height: 0;
    margin-left: 0;
    border-radius: 10px;
    box-shadow: var(--shadow);
  }

  .hero-art img {
    height: auto;
    min-height: 0;
    aspect-ratio: 474 / 380;
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-card:nth-child(4) {
    border-left: 1px solid var(--line);
  }

  .service-card:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 820px) {
  .header-inner {
    min-height: 74px;
  }

  .brand img {
    width: 200px;
  }

  .menu-toggle {
    display: block;
  }

  .js .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    padding: 20px 24px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 18px 30px rgba(18, 52, 94, 0.08);
  }

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

  .no-js .site-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav > a {
    padding: 11px 0;
  }

  .language-picker {
    margin: 9px 0 0;
  }

  .language-picker summary {
    justify-content: space-between;
  }

  .language-menu {
    position: static;
    margin-top: 8px;
    box-shadow: none;
  }

  .menu-toggle[aria-expanded='true'] span:first-child {
    transform: translateY(6px) rotate(45deg);
  }

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

  .menu-toggle[aria-expanded='true'] span:last-child {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    padding-top: 62px;
  }

  .hero-grid,
  .about-grid,
  .area-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .process-panel,
  .area-panel {
    min-height: 0;
    padding: 0;
  }

  .area-panel {
    padding-top: 48px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-grid {
    display: grid;
    min-height: 0;
  }

  .hero-copy {
    width: auto;
    padding-top: 0;
  }

  .hero-art {
    top: auto;
    right: auto;
    bottom: auto;
    width: auto;
    min-height: 0;
    max-width: 680px;
    margin: 10px auto 0;
    border-radius: 10px;
    box-shadow: var(--shadow);
  }

  .hero-art img {
    height: auto;
    min-height: 0;
    aspect-ratio: 474 / 380;
  }

  .section-heading {
    display: block;
  }

  .section-intro {
    margin-top: 18px;
  }

  .about-grid,
  .area-grid {
    gap: 48px;
  }

  .contact-panel {
    gap: 0;
    padding: 42px 0;
  }

  .contact-panel > div:first-child {
    padding-right: 0;
    padding-bottom: 36px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-aside {
    padding: 36px 0 0;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .hero::before {
    top: 80px;
    right: auto;
    left: 50%;
    width: 300px;
    height: 300px;
    transform: translateX(-50%);
  }

  .hero::after {
    top: 150px;
    right: auto;
    left: 50%;
    width: 220px;
    height: 220px;
    transform: translateX(-50%);
  }

  .about-media::after {
    right: 0;
  }

  .brand img {
    width: 175px;
  }

  .hero {
    padding: 54px 0 64px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 14vw, 4rem);
  }

  .hero-stamp {
    right: 15px;
    bottom: 16px;
    width: 84px;
    height: 84px;
    font-size: 0.47rem;
  }

  .section {
    padding: 78px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:nth-child(n + 4),
  .service-card:nth-child(4) {
    min-height: 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

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

  .service-card__icon {
    margin-bottom: 18px;
  }

  .service-card h3 {
    min-height: 0;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    min-height: 0;
  }

  .process-card h3 {
    margin-top: 35px;
  }

  .contact-section {
    padding: 70px 0;
  }

  .contact-panel {
    gap: 0;
    padding: 28px 0;
  }

  .contact-panel > div:first-child {
    padding-bottom: 28px;
  }

  .contact-aside {
    padding-top: 28px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-meta {
    justify-content: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}


/* Reviews / Google Business */
.reviews-section { background: #fff; padding-top: 10px; }
.reviews-panel {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 40px;
  padding: 44px 52px; border: 1px solid var(--line); border-radius: var(--radius); background: #fbfaf7; box-shadow: var(--shadow);
}
.reviews-copy h2 { margin: 12px 0 10px; color: var(--blue-deep); font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.05; }
.reviews-copy > p:not(.section-kicker) { max-width: 650px; margin: 0 0 14px; color: var(--muted); }
.google-rating { margin: 4px 0 22px; color: var(--orange); font-size: 1.35rem; letter-spacing: .16em; }
.review-badge {
  display: grid; width: 150px; height: 150px; place-items: center; border: 1px solid rgba(29,78,137,.15); border-radius: 50%;
  color: var(--blue); background: #fff; font-size: 2.5rem; font-weight: 700; box-shadow: 0 14px 34px rgba(18,52,94,.08);
}
@media (max-width: 700px) {
  .reviews-panel { grid-template-columns: 1fr; padding: 34px 28px; }
  .review-badge { width: 100px; height: 100px; font-size: 1.9rem; }
}

/* Definitive JO brand lockup */
.brand {
  gap: 12px;
  text-decoration: none;
}
.brand .brand-symbol {
  width: 72px;
  height: 60px;
  object-fit: contain;
  flex: 0 0 auto;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  color: var(--navy, #1d4e89);
}
.brand-copy strong {
  font-size: 1.12rem;
  letter-spacing: .045em;
  text-transform: uppercase;
}
.brand-copy small {
  margin-top: 6px;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
@media (max-width: 820px) {
  .brand .brand-symbol { width: 58px; height: 50px; }
  .brand-copy strong { font-size: .95rem; }
  .brand-copy small { font-size: .58rem; margin-top: 4px; }
}
@media (max-width: 520px) {
  .brand { gap: 8px; }
  .brand .brand-symbol { width: 48px; height: 42px; }
  .brand-copy strong { font-size: .82rem; }
  .brand-copy small { font-size: .5rem; letter-spacing: .1em; }
}

.partner-list{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;margin-top:28px}.partner-name{min-height:92px;display:flex;align-items:center;justify-content:center;text-align:center;padding:18px;border:1px solid rgba(20,54,86,.14);border-radius:14px;background:#fff;color:#163656;font-weight:700;font-size:1.05rem}@media(max-width:720px){.partner-list{grid-template-columns:1fr}.partner-name{min-height:70px}}

/* V5 — single contact block */
.contact-panel{
  display:block;
  max-width:820px;
  margin-inline:auto;
}
.contact-panel > div:first-child{
  padding-right:0;
  border-right:0;
}
.contact-panel > div:first-child p{
  max-width:620px;
}
.contact-links{
  max-width:620px;
}

/* Collaborators are intentionally not shown until permissions are confirmed. */

/* V6 — compact final contact section */
.contact-section{
  padding:72px 0;
}
.contact-panel{
  max-width:740px;
  margin-inline:auto;
  padding:38px 0;
}
.contact-panel h2{
  margin-top:14px;
  margin-bottom:16px;
}
.contact-links{
  margin-top:28px;
  gap:12px;
}
@media (max-width: 760px){
  .contact-section{padding:56px 0;}
  .contact-panel{max-width:none;padding:32px 0;}
}
