:root {
  --ink: #071923;
  --ink-soft: #1c313d;
  --muted: #60727a;
  --paper: #ffffff;
  --wash: #f4f8f8;
  --mist: #e5eeed;
  --line: #d5e0de;
  --teal: #008f8a;
  --teal-dark: #056d6a;
  --blue: #2d6f92;
  --copper: #bb6b35;
  --graphite: #101a20;
  --graphite-2: #1c2a31;
  --shadow: 0 24px 70px rgba(7, 25, 35, 0.16);
  --radius: 8px;
  --max: 1160px;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

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

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

.skip-link:focus {
  z-index: 30;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: var(--paper);
  background: var(--ink);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  border-color: var(--line);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 14px;
  gap: 2px;
  flex: 0 0 auto;
}

.brand-mark span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--teal);
}

.brand-mark span:nth-child(2) {
  transform: translateX(3px);
  background: #1ca8a1;
}

.brand-mark span:nth-child(3) {
  transform: translateX(1px);
  background: #74cbc1;
}

.brand-mark span:nth-child(4) {
  transform: translateX(4px);
  background: #d99a4a;
}

.brand-mark span:nth-child(5) {
  transform: translateX(2px);
  background: #e6d7a0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  position: relative;
  padding: 12px 13px;
  color: var(--ink-soft);
  font-size: 0.93rem;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 13px;
  bottom: 7px;
  left: 13px;
  height: 2px;
  content: "";
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(730px, 74svh);
  overflow: hidden;
  color: var(--paper);
  background: var(--graphite);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 18, 25, 0.94) 0%, rgba(7, 18, 25, 0.74) 43%, rgba(7, 18, 25, 0.08) 78%),
    linear-gradient(0deg, rgba(7, 18, 25, 0.58) 0%, rgba(7, 18, 25, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 78px 0;
}

.hero-copy {
  width: 100%;
  max-width: 690px;
  min-width: 0;
}

.hero h1,
.section-intro h2,
.section-heading h2,
.review-layout h2,
.privacy-grid h2,
.contact-grid h2,
.policy-hero h1,
.policy-summary h2,
.policy-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 660px;
  font-size: 5.35rem;
}

.hero p {
  max-width: min(610px, calc(100vw - 40px));
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.2rem;
  line-height: 1.62;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid var(--teal);
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
  margin-right: 10px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

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

.button.primary {
  color: var(--paper);
  background: var(--teal);
  box-shadow: 0 14px 30px rgba(0, 143, 138, 0.26);
}

.button.primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.button.secondary {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.38);
}

.button.quiet {
  color: var(--teal-dark);
  background: var(--paper);
  border-color: var(--line);
}

.signal-band {
  padding: 34px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--line);
}

.signal-grid article {
  min-height: 124px;
  padding: 24px 28px;
  border-right: 1px solid var(--line);
}

.signal-grid span {
  display: block;
  color: var(--teal-dark);
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: 0;
}

.signal-grid strong {
  display: block;
  max-width: min(100%, calc(100vw - 80px));
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.44;
}

.practice-section,
.services-section,
.review-section,
.process-section,
.privacy-summary,
.contact-section,
.policy-page {
  padding: 92px 0;
}

.services-section,
.privacy-summary,
.policy-page {
  background: var(--wash);
}

.split,
.review-layout,
.privacy-grid,
.contact-grid,
.policy-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.14fr);
  gap: 74px;
}

.section-intro,
.rich-copy,
.section-heading,
.review-layout > *,
.privacy-grid > *,
.contact-grid > *,
.policy-layout > * {
  min-width: 0;
}

.section-intro h2,
.section-heading h2,
.review-layout h2,
.privacy-grid h2,
.contact-grid h2 {
  font-size: 3.05rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.section-heading p,
.section-intro p,
.contact-grid p,
.privacy-grid p,
.rich-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.section-heading p,
.section-intro p,
.privacy-grid p,
.contact-grid p {
  margin-top: 16px;
}

.rich-copy {
  display: grid;
  align-content: start;
  gap: 22px;
  padding-top: 9px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card {
  min-height: 335px;
  padding: 34px;
  border-right: 1px solid var(--line);
}

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

.icon-shell {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--teal);
  background: #eef8f6;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.icon-shell svg {
  width: 35px;
  height: 35px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.service-card h3,
.review-list h3,
.process-grid h3,
.policy-panel h3 {
  margin: 24px 0 10px;
  font-family: var(--serif);
  font-size: 1.42rem;
  line-height: 1.16;
  letter-spacing: 0;
}

.service-card p,
.review-list p,
.process-grid p,
.policy-panel p {
  margin: 0;
  color: var(--muted);
}

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

.review-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.review-list article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.review-list span,
.process-grid span {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.review-list h3 {
  margin-top: 0;
}

.process-section {
  color: var(--paper);
  background: linear-gradient(120deg, var(--graphite), #143a3a 56%, #284c5a);
}

.section-heading.compact {
  max-width: 740px;
}

.process-section h2 {
  color: var(--paper);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 36px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.process-grid article {
  min-height: 260px;
  padding: 34px;
  background: rgba(7, 21, 28, 0.54);
}

.process-grid h3,
.process-grid p {
  color: var(--paper);
}

.process-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.policy-panel {
  align-self: start;
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.policy-panel h3 {
  margin-top: 0;
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  color: var(--teal-dark);
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: 0;
  text-decoration: none;
}

.text-link::after {
  width: 7px;
  height: 7px;
  margin-left: 10px;
  content: "";
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

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

.contact-grid {
  align-items: center;
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.site-footer {
  padding: 44px 0;
  color: rgba(255, 255, 255, 0.76);
  background: var(--graphite);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.footer-brand {
  color: var(--paper);
}

.site-footer p {
  max-width: 560px;
  margin: 18px 0 0;
}

.footer-links {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.footer-links a {
  color: var(--paper);
  font-weight: 800;
}

.policy-hero {
  color: var(--paper);
  background:
    linear-gradient(120deg, rgba(7, 25, 35, 0.97), rgba(16, 58, 58, 0.96) 58%, rgba(45, 111, 146, 0.88)),
    var(--graphite);
}

.policy-hero-inner {
  padding: 118px 0 88px;
}

.policy-hero h1 {
  font-size: 5rem;
}

.policy-hero p {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.18rem;
}

.privacy-note {
  font-size: 0.96rem;
}

.policy-summary {
  align-self: start;
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.policy-summary h2 {
  font-size: 2rem;
}

.policy-summary p {
  margin: 16px 0 0;
  color: var(--muted);
}

.policy-copy {
  display: grid;
  gap: 34px;
  padding: 8px 0;
}

.policy-copy section {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.policy-copy section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.policy-copy h2 {
  font-size: 2rem;
}

.policy-copy p {
  margin: 14px 0 0;
  color: var(--muted);
}

.policy-copy a {
  color: var(--teal-dark);
  font-weight: 800;
}

@media (max-width: 1060px) {
  .hero h1 {
    font-size: 4.55rem;
  }

  .section-intro h2,
  .section-heading h2,
  .review-layout h2,
  .privacy-grid h2,
  .contact-grid h2 {
    font-size: 2.7rem;
  }

  .service-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:nth-child(2) {
    border-right: 0;
  }

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

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

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    right: 20px;
    left: 20px;
    display: none;
    padding: 10px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px;
  }

  .hero {
    min-height: 72svh;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 18, 25, 0.93), rgba(7, 18, 25, 0.46)),
      linear-gradient(0deg, rgba(7, 18, 25, 0.72) 0%, rgba(7, 18, 25, 0.12) 58%);
  }

  .hero-content {
    align-items: end;
    padding: 96px 0 54px;
  }

  .hero h1 {
    max-width: 560px;
    font-size: 3.55rem;
  }

  .hero p {
    font-size: 1.08rem;
  }

  .section-intro h2,
  .section-heading h2,
  .review-layout h2,
  .privacy-grid h2,
  .contact-grid h2 {
    font-size: 2.35rem;
  }

  .signal-grid,
  .split,
  .review-layout,
  .privacy-grid,
  .contact-grid,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .signal-grid {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .signal-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .practice-section,
  .services-section,
  .review-section,
  .process-section,
  .privacy-summary,
  .contact-section,
  .policy-page {
    padding: 72px 0;
  }

  .split,
  .review-layout,
  .privacy-grid,
  .contact-grid,
  .policy-layout {
    gap: 34px;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .footer-inner {
    display: grid;
  }

  .footer-links {
    justify-items: start;
  }

  .policy-hero-inner {
    padding: 92px 0 68px;
  }

  .policy-hero h1 {
    font-size: 3.7rem;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand {
    max-width: 240px;
    font-size: 1.05rem;
  }

  .hero {
    min-height: 73svh;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-content {
    padding: 84px 0 44px;
  }

  .hero h1 {
    max-width: 330px;
    font-size: 2.35rem;
  }

  .hero p {
    max-width: calc(100vw - 28px);
    font-size: 1rem;
  }

  .section-intro h2,
  .section-heading h2,
  .review-layout h2,
  .privacy-grid h2,
  .contact-grid h2,
  .policy-copy h2,
  .policy-summary h2 {
    font-size: 2rem;
  }

  .hero-actions,
  .contact-actions,
  .service-grid,
  .process-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

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

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

  .review-list article {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .policy-panel,
  .policy-summary {
    padding: 24px;
  }

  .policy-hero h1 {
    font-size: 2.55rem;
  }

  .policy-hero p {
    font-size: 1rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
