:root {
  --ivory-050: #faf8f3;
  --linen-100: #f1ede5;
  --stone-200: #d9d2c7;
  --stone-400: #aaa193;
  --ink-900: #15202a;
  --slate-700: #35424a;
  --forest-900: #0d2824;
  --forest-800: #143a35;
  --forest-700: #1d5149;
  --sage-500: #718a7e;
  --brass-500: #ad9163;
  --teal-500: #238a89;
  --teal-200: #b9ddda;
  --white: #ffffff;
  --line: rgba(21, 32, 42, 0.12);
  --line-strong: rgba(21, 32, 42, 0.22);
  --shadow-soft: 0 22px 70px rgba(21, 32, 42, 0.11);
  --shadow-card: 0 14px 34px rgba(21, 32, 42, 0.08);
  --radius: 4px;
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(90deg, rgba(21, 32, 42, 0.035) 1px, transparent 1px) 50% 0 / 96px 96px,
    radial-gradient(circle at 86% 8%, rgba(185, 221, 218, 0.55), transparent 26rem),
    linear-gradient(180deg, var(--ivory-050), var(--linen-100));
  color: var(--ink-900);
  font-family: var(--font-body);
  line-height: 1.65;
}

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

a {
  color: inherit;
}

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

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

h1,
h2 {
  color: var(--ink-900);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.25rem;
  font-size: clamp(3rem, 8.4vw, 6.6rem);
  line-height: 0.92;
}

h2 {
  max-width: 16ch;
  margin-bottom: 1rem;
  font-size: clamp(2.15rem, 5.2vw, 4.6rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 0.55rem;
  color: var(--forest-800);
  font-size: 1rem;
  line-height: 1.28;
}

p {
  color: var(--slate-700);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-150%);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  background: var(--forest-800);
  color: var(--ivory-050);
  font-weight: 800;
}

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

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

.section {
  position: relative;
  padding: clamp(4.5rem, 9vw, 8.5rem) 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(21, 32, 42, 0.1);
  background: rgba(250, 248, 243, 0.84);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink-900);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.wordmark img {
  border-radius: 7px;
  box-shadow: 0 0 0 1px var(--line);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.15rem;
  color: var(--slate-700);
  font-size: 0.88rem;
}

.nav-links a,
.site-footer nav a {
  text-decoration: none;
}

.nav-links a:hover,
.site-footer nav a:hover {
  color: var(--teal-500);
}

.nav-cta {
  border: 1px solid rgba(29, 81, 73, 0.38);
  border-radius: 999px;
  padding: 0.62rem 0.95rem;
  color: var(--forest-800);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.hero {
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: clamp(4.5rem, 8vw, 7rem);
}

.hero::before {
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(20, 58, 53, 0.07));
  pointer-events: none;
}

.hero-grid,
.split-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-copy::before {
  display: block;
  width: 92px;
  height: 1px;
  margin-bottom: 1.4rem;
  content: "";
  background: var(--brass-500);
}

.section-label {
  margin-bottom: 0.85rem;
  color: var(--teal-500);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.lede {
  color: var(--ink-900);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-copy p,
.section-heading p,
.split-grid > div > p,
.band-panel p,
.contact-panel p {
  max-width: 70ch;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.8rem 0 1.35rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.82rem 1.2rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button.primary {
  background: var(--forest-700);
  color: var(--ivory-050);
}

.button.primary:hover {
  background: var(--forest-800);
}

.button.secondary {
  border-color: rgba(21, 32, 42, 0.22);
  background: rgba(255, 255, 255, 0.55);
  color: var(--forest-800);
}

.button.secondary:hover {
  border-color: var(--teal-500);
}

.button.secondary.light {
  border-color: rgba(250, 248, 243, 0.4);
  background: transparent;
  color: var(--ivory-050);
}

.trust-note,
.closing-line {
  color: var(--ink-900);
  font-weight: 720;
}

.microcopy {
  margin-bottom: 0;
  color: rgba(250, 248, 243, 0.78);
  font-size: 0.95rem;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(21, 32, 42, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.image-frame::after {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(250, 248, 243, 0.48);
  content: "";
  pointer-events: none;
}

.image-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.58) contrast(0.96) brightness(1.05);
}

.portrait-frame img {
  aspect-ratio: 6 / 7;
}

.section-heading {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-heading::after,
.editorial-section::after,
.residence-section::after {
  display: block;
  width: min(100%, 520px);
  height: 1px;
  margin-top: 1.4rem;
  content: "";
  background: linear-gradient(90deg, var(--teal-500), transparent);
  opacity: 0.55;
}

.card-grid,
.faq-grid {
  display: grid;
  gap: 1rem;
}

.card,
.faq-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-card);
}

.card::before,
.faq-card::before {
  display: block;
  width: 42px;
  height: 2px;
  margin-bottom: 1rem;
  content: "";
  background: var(--teal-500);
}

.card p,
.faq-card p {
  margin-bottom: 0;
}

.systems-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(241, 237, 229, 0.7));
}

.systems-grid {
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
}

.callout {
  border-left: 3px solid var(--brass-500);
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.62);
  color: var(--forest-800);
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.35;
}

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

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--slate-700);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  content: "";
  background: var(--teal-500);
}

.discretion-band {
  padding-block: clamp(3.5rem, 7vw, 6.5rem);
}

.band-panel,
.contact-panel {
  border-radius: var(--radius);
  padding: clamp(1.4rem, 5vw, 3.3rem);
  background:
    linear-gradient(135deg, rgba(35, 138, 137, 0.18), transparent 34%),
    var(--forest-800);
  box-shadow: var(--shadow-soft);
}

.band-panel h2,
.contact-panel h2,
.band-panel p,
.contact-panel p {
  color: var(--ivory-050);
}

.band-panel .section-label,
.contact-panel .section-label {
  color: var(--teal-200);
}

.process-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  border-top: 1px solid var(--line-strong);
  padding: 1.15rem 0 0 3.7rem;
  counter-increment: process;
}

.process-list li::before {
  position: absolute;
  left: 0;
  top: 1rem;
  color: var(--brass-500);
  content: counter(process, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.process-list p {
  margin-bottom: 0;
}

.leadership-section {
  background:
    linear-gradient(180deg, rgba(20, 58, 53, 0.06), transparent),
    var(--ivory-050);
}

.leadership-section .button {
  margin-top: 0.35rem;
}

.entity-statement {
  margin-top: 1.4rem;
  border-left: 3px solid var(--teal-500);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.95rem;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card a {
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 1.1rem;
  color: var(--forest-800);
  font-weight: 850;
  text-decoration-color: rgba(35, 138, 137, 0.55);
  text-underline-offset: 0.22em;
}

.service-card a:hover {
  color: var(--teal-500);
}

.faq-section {
  background: rgba(255, 255, 255, 0.38);
}

.contact-section {
  padding-top: 0;
}

.site-footer {
  border-top: 1px solid rgba(250, 248, 243, 0.12);
  padding: 2.6rem 0;
  background: var(--forest-900);
}

.site-footer .wordmark,
.site-footer p,
.site-footer nav a,
.site-footer .copyright {
  color: var(--ivory-050);
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.site-footer p {
  max-width: 58ch;
  color: rgba(250, 248, 243, 0.74);
}

.site-footer nav {
  display: grid;
  gap: 0.6rem;
  color: rgba(250, 248, 243, 0.76);
}

.copyright {
  color: rgba(250, 248, 243, 0.58);
  font-size: 0.9rem;
}

@media (min-width: 720px) {
  .faq-grid,
  .engagement-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 980px) {
  .nav-links {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.78fr);
  }

  .split-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  }

  .split-grid.reverse {
    grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .copyright {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .nav {
    min-height: 64px;
  }

  .wordmark span {
    display: none;
  }

  .nav-cta {
    padding-inline: 0.75rem;
  }

  .button {
    width: 100%;
  }

  .section {
    padding-block: 3.8rem;
  }
}

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