:root {
  --ink: #152927;
  --ink-soft: #526562;
  --paper: #f7f7f0;
  --paper-deep: #ecf0e8;
  --white: #ffffff;
  --brand: #0b4f4a;
  --brand-deep: #073d39;
  --accent: #dceb61;
  --accent-soft: #f1f7bd;
  --line: rgba(21, 41, 39, 0.14);
  --shadow: 0 28px 70px rgba(8, 51, 48, 0.12);
  --radius-sm: 0.8rem;
  --radius-md: 1.4rem;
  --radius-lg: 2rem;
  --container: min(1160px, calc(100% - 2.5rem));
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--brand-deep);
  background: var(--accent);
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.045em;
}

p {
  color: var(--ink-soft);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--brand-deep);
  border-radius: 0.5rem;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  padding: 1.2rem 0;
  border-bottom: 1px solid transparent;
  transition: padding 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header-solid {
  padding: 0.8rem 0;
  background: rgba(247, 247, 240, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(15, 56, 52, 0.06);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 2.75rem;
  place-items: center;
  color: var(--accent);
  background: var(--brand);
  border-radius: 0.85rem;
}

.brand-mark svg {
  width: 2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 0.25rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.site-nav,
.legal-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a,
.legal-nav a {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a.button {
  color: var(--white);
}

.site-nav a.button:hover {
  color: var(--brand-deep);
}

.site-nav > a:not(.button),
.legal-nav a {
  position: relative;
}

.site-nav > a:not(.button)::after,
.legal-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 2px;
  background: var(--brand);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.nav-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  border-radius: 0.8rem;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.button {
  display: inline-flex;
  min-height: 3.3rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  color: var(--white);
  background: var(--brand);
  border: 1px solid var(--brand);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(11, 79, 74, 0.15);
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  color: var(--brand-deep);
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 15px 36px rgba(11, 79, 74, 0.18);
  transform: translateY(-2px);
}

.button-small {
  min-height: 2.8rem;
  padding: 0.65rem 1.15rem;
}

.hero {
  position: relative;
  min-height: 48rem;
  padding: 10.8rem 0 0;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(rgba(247, 247, 240, 0.72), rgba(247, 247, 240, 0.96)),
    linear-gradient(90deg, rgba(11, 79, 74, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(11, 79, 74, 0.055) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  content: "";
}

.hero-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.6;
}

.hero-glow-one {
  top: 5rem;
  right: -10rem;
  width: 34rem;
  height: 34rem;
  background: radial-gradient(circle, rgba(220, 235, 97, 0.52), rgba(220, 235, 97, 0));
}

.hero-glow-two {
  bottom: -7rem;
  left: -12rem;
  width: 35rem;
  height: 35rem;
  background: radial-gradient(circle, rgba(53, 143, 134, 0.18), rgba(53, 143, 134, 0));
}

.hero-grid {
  display: grid;
  min-height: 31rem;
  align-items: center;
  grid-template-columns: minmax(0, 1.15fr) minmax(22rem, 0.72fr);
  gap: clamp(3rem, 8vw, 7rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.75rem;
  height: 2px;
  background: var(--accent);
  content: "";
}

.eyebrow-light {
  color: var(--accent-soft);
}

.hero h1 {
  max-width: 12ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.2rem, 6.7vw, 6.1rem);
  font-weight: 760;
}

.hero h1 em {
  position: relative;
  color: var(--brand);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.hero h1 em::after {
  position: absolute;
  right: 0;
  bottom: -0.05em;
  left: 0;
  height: 0.16em;
  background: var(--accent);
  border-radius: 999px;
  content: "";
  transform: rotate(-1deg);
}

.hero-lead {
  max-width: 39rem;
  margin-bottom: 2rem;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
}

.text-link span {
  color: var(--brand);
  font-size: 1.25rem;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.hero-card {
  position: relative;
  padding: 2.2rem;
  overflow: hidden;
  color: var(--white);
  background: var(--brand);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card::after {
  position: absolute;
  top: -6rem;
  right: -6rem;
  width: 14rem;
  height: 14rem;
  background: rgba(220, 235, 97, 0.11);
  border-radius: 50%;
  content: "";
}

.card-kicker {
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card h2 {
  max-width: 14ch;
  margin-bottom: 1.7rem;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.check-list {
  display: grid;
  gap: 0.9rem;
  padding: 0;
  margin: 0 0 2rem;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.check-list span {
  display: grid;
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 1.5rem;
  place-items: center;
  color: var(--brand-deep);
  background: var(--accent);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
}

.card-contact {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.35rem;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  text-decoration: none;
}

.card-contact > span:first-child {
  display: grid;
  min-width: 0;
}

.card-contact small {
  color: rgba(255, 255, 255, 0.6);
}

.card-contact strong {
  overflow: hidden;
  font-size: 0.82rem;
  text-overflow: ellipsis;
}

.card-contact > span:last-child {
  color: var(--accent);
  font-size: 1.3rem;
  transition: transform 180ms ease;
}

.card-contact:hover > span:last-child {
  transform: translate(3px, -3px);
}

.trust-row {
  display: grid;
  margin-top: 5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.trust-row span {
  padding: 1.15rem 1.5rem;
  color: var(--ink-soft);
  font-size: 0.79rem;
  font-weight: 750;
  letter-spacing: 0.035em;
  text-align: center;
  text-transform: uppercase;
}

.trust-row span + span {
  border-left: 1px solid var(--line);
}

.section {
  padding: clamp(5.5rem, 10vw, 9rem) 0;
}

.split-grid,
.company-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.section-heading h2 {
  max-width: 16ch;
  margin-bottom: 1.4rem;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.section-heading > p:last-child {
  max-width: 35rem;
  font-size: 1.08rem;
}

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

.about-copy > p {
  max-width: 41rem;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.about-copy > p:first-child {
  color: var(--ink);
}

.principles {
  display: grid;
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid var(--line);
}

.principles div {
  display: grid;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 3.5rem 1fr;
}

.principles strong {
  color: var(--brand);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-style: italic;
}

.principles span {
  font-weight: 700;
}

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

.section-heading-centered {
  max-width: 48rem;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-heading-centered .eyebrow {
  justify-content: center;
}

.section-heading-centered h2 {
  max-width: none;
}

.section-heading-centered > p:last-child {
  margin-inline: auto;
}

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

.service-card {
  position: relative;
  min-height: 24rem;
  padding: 2rem;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  border-color: rgba(11, 79, 74, 0.35);
  box-shadow: 0 24px 60px rgba(11, 79, 74, 0.1);
  transform: translateY(-6px);
}

.service-number {
  position: absolute;
  top: 1.6rem;
  right: 1.7rem;
  color: rgba(11, 79, 74, 0.35);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-style: italic;
}

.service-icon {
  display: grid;
  width: 3.6rem;
  height: 3.6rem;
  margin-bottom: 4.5rem;
  place-items: center;
  color: var(--brand);
  background: var(--accent-soft);
  border-radius: 1rem;
}

.service-icon svg {
  width: 1.65rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin-bottom: 0.9rem;
  font-size: 1.45rem;
}

.service-card p {
  margin-bottom: 0;
}

.process {
  padding-top: 0;
  background: var(--paper);
}

.process-panel {
  position: relative;
  display: grid;
  padding: clamp(2.5rem, 6vw, 5rem);
  overflow: hidden;
  color: var(--white);
  background: var(--brand-deep);
  border-radius: var(--radius-lg);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.process-panel::after {
  position: absolute;
  right: -8rem;
  bottom: -12rem;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(220, 235, 97, 0.13), transparent 68%);
  content: "";
}

.process-intro h2 {
  max-width: 13ch;
  margin-bottom: 1.2rem;
  font-size: clamp(2.4rem, 4.7vw, 4.2rem);
}

.process-intro > p:last-child {
  max-width: 33rem;
  color: rgba(255, 255, 255, 0.68);
}

.process-list {
  position: relative;
  z-index: 1;
  display: grid;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  grid-template-columns: 3.5rem 1fr;
}

.process-list li:first-child {
  padding-top: 0;
}

.process-list > li > span {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  color: var(--brand-deep);
  background: var(--accent);
  border-radius: 50%;
  font-weight: 800;
}

.process-list strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
}

.process-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
}

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

.company-data {
  display: grid;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  grid-template-columns: 1fr 1fr;
}

.company-data div {
  min-width: 0;
  padding: 1.2rem 1.4rem;
  border-bottom: 1px solid var(--line);
}

.company-data div:nth-child(even):not(.data-wide) {
  border-left: 1px solid var(--line);
}

.company-data div:last-child {
  border-bottom: 0;
}

.company-data .data-wide {
  grid-column: 1 / -1;
}

.company-data dt {
  margin-bottom: 0.35rem;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.company-data dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 0.94rem;
  font-weight: 700;
}

.status-dot {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-right: 0.35rem;
  background: #24a56a;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(36, 165, 106, 0.12);
}

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

.contact-panel {
  display: grid;
  align-items: center;
  padding: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  background: var(--brand);
  border-radius: var(--radius-lg);
  grid-template-columns: minmax(0, 0.85fr) minmax(20rem, 1fr);
  gap: clamp(3rem, 8vw, 7rem);
}

.contact-copy h2 {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-size: clamp(2.5rem, 4.8vw, 4.2rem);
}

.contact-copy > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.contact-links {
  display: grid;
  gap: 0.8rem;
}

.contact-links > a {
  display: grid;
  min-width: 0;
  align-items: center;
  padding: 1rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  grid-template-columns: 2.8rem minmax(0, 1fr) auto;
  gap: 0.9rem;
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms ease;
}

.contact-links > a:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateX(4px);
}

.contact-icon {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  color: var(--brand-deep);
  background: var(--accent);
  border-radius: 50%;
  font-weight: 900;
}

.contact-links > a > span:nth-child(2) {
  display: grid;
  min-width: 0;
}

.contact-links small {
  color: rgba(255, 255, 255, 0.58);
}

.contact-links strong {
  overflow: hidden;
  font-size: 0.9rem;
  text-overflow: ellipsis;
}

.contact-links > a > span:last-child {
  color: var(--accent);
  font-size: 1.25rem;
}

.site-footer {
  padding: 4.5rem 0 2rem;
  background: var(--paper);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 3rem;
}

.footer-top nav {
  display: flex;
  gap: 2rem;
}

.footer-top nav a,
.footer-bottom a {
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 650;
  text-decoration: none;
}

.footer-top nav a:hover,
.footer-bottom a:hover {
  color: var(--brand);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.75rem;
}

.reveal {
  opacity: 1;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.js .reveal-delay-short {
  transition-delay: 90ms;
}

.js .reveal-delay {
  transition-delay: 170ms;
}

.legal-main {
  min-height: calc(100vh - 10rem);
  padding: 10rem 0 7rem;
  background: var(--white);
}

.legal-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(15rem, 0.55fr) minmax(0, 1fr);
  gap: clamp(3rem, 9vw, 9rem);
}

.legal-aside {
  position: sticky;
  top: 8rem;
}

.legal-aside h1 {
  max-width: 10ch;
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.legal-aside > p:last-child {
  font-size: 0.85rem;
}

.legal-content {
  max-width: 47rem;
}

.legal-lead {
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-size: 1.2rem;
}

.legal-content section {
  margin-bottom: 2.7rem;
}

.legal-content h2 {
  margin-bottom: 0.85rem;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.legal-content p {
  margin-bottom: 1rem;
}

.legal-contact {
  padding: 2rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.legal-contact .button {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.legal-footer {
  padding-top: 2rem;
}

@media (max-width: 980px) {
  .hero-grid {
    gap: 3rem;
    grid-template-columns: minmax(0, 1.05fr) minmax(19rem, 0.75fr);
  }

  .hero h1 {
    font-size: clamp(3rem, 7.5vw, 5rem);
  }

  .service-card {
    padding: 1.6rem;
  }

  .contact-panel {
    gap: 3rem;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100% - 2rem, 42rem);
  }

  .site-header {
    padding: 0.8rem 0;
    background: rgba(247, 247, 240, 0.94);
    border-bottom-color: var(--line);
    backdrop-filter: blur(18px);
  }

  .js .nav-toggle {
    display: block;
  }

  .site-nav {
    gap: 1rem;
  }

  .js .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 1rem;
    left: 1rem;
    display: none;
    align-items: stretch;
    padding: 1rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    flex-direction: column;
  }

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

  .site-nav a {
    padding: 0.6rem 0.5rem;
  }

  .site-nav .button {
    margin-top: 0.35rem;
  }

  .hero {
    min-height: 0;
    padding-top: 8.5rem;
  }

  .hero-grid,
  .split-grid,
  .company-grid,
  .process-panel,
  .contact-panel,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 1.5rem;
  }

  .hero h1 {
    max-width: 11ch;
  }

  .hero-card {
    max-width: 35rem;
  }

  .trust-row {
    margin-top: 4rem;
    grid-template-columns: 1fr;
  }

  .trust-row span + span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section-heading h2 {
    max-width: 18ch;
  }

  .service-grid {
    max-width: 38rem;
    margin-inline: auto;
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-icon {
    margin-bottom: 3rem;
  }

  .process-panel,
  .contact-panel {
    gap: 3.5rem;
  }

  .legal-aside {
    position: static;
  }

  .legal-aside h1 {
    max-width: none;
  }
}

@media (max-width: 620px) {
  .brand-copy strong {
    font-size: 0.9rem;
  }

  .brand-copy small {
    font-size: 0.65rem;
  }

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

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .text-link {
    justify-content: center;
  }

  .company-data {
    grid-template-columns: 1fr;
  }

  .company-data .data-wide,
  .company-data div {
    grid-column: auto;
  }

  .company-data div:nth-child(even):not(.data-wide) {
    border-left: 0;
  }

  .contact-panel,
  .process-panel {
    width: calc(100% - 1rem);
  }

  .contact-links strong {
    font-size: 0.78rem;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-top nav {
    gap: 0.8rem;
    flex-direction: column;
  }

  .legal-nav {
    gap: 0.9rem;
  }

  .legal-nav a {
    font-size: 0.76rem;
  }

  .legal-main {
    padding-top: 8rem;
  }

  .legal-contact {
    padding: 1.3rem;
  }

  .legal-contact .button {
    width: 100%;
    font-size: 0.78rem;
  }
}

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .nav-toggle,
  .hero-actions,
  .contact {
    display: none !important;
  }

  body,
  .about,
  .services,
  .company,
  .legal-main {
    color: #000;
    background: #fff;
  }

  .hero,
  .section,
  .legal-main {
    min-height: auto;
    padding: 2rem 0;
  }

  .hero::before,
  .hero-glow {
    display: none;
  }

  .hero-grid,
  .split-grid,
  .company-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }
}
