:root {
  --ink: #223437;
  --muted: #5f7072;
  --cream: #f7f3ed;
  --paper: #fffdf9;
  --blue: #315a65;
  --blue-dark: #274953;
  --line: #d9dedb;
  --accent: #b76f62;
  --shadow: 0 18px 60px rgba(24, 49, 55, 0.14);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.wrap { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 999; padding: 10px 14px; background: #fff; border-radius: 8px; transform: translateY(-160%); }
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 249, 0.94);
  border-bottom: 1px solid rgba(49, 90, 101, 0.12);
  backdrop-filter: blur(12px);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { text-decoration: none; display: inline-flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: Georgia, "Times New Roman", serif; font-size: 1.28rem; font-weight: 700; letter-spacing: .01em; }
.brand-sub { margin-top: 5px; color: var(--muted); font-size: .78rem; letter-spacing: .11em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: clamp(14px, 2.2vw, 30px); font-size: .94rem; }
.nav a { text-decoration: none; text-underline-offset: 5px; }
.nav a:hover, .nav a:focus-visible { text-decoration: underline; }
.nav-cta { border: 1px solid var(--blue); border-radius: 999px; padding: 10px 16px; }

.hero { padding: clamp(70px, 10vw, 130px) 0; overflow: hidden; background: linear-gradient(130deg, #fbf7f1 0%, #f3f0e8 56%, #e8efed 100%); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr); align-items: center; gap: clamp(44px, 7vw, 92px); }
.eyebrow, .section-kicker { margin: 0 0 18px; font-size: .78rem; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.12; letter-spacing: -.025em; }
h1 { margin: 0; max-width: 800px; font-size: clamp(2.75rem, 6.3vw, 5.8rem); font-weight: 500; }
h1 span { color: var(--blue); }
h2 { margin: 0 0 28px; font-size: clamp(2.2rem, 4vw, 4.1rem); font-weight: 500; }
h3 { margin: 10px 0 12px; font-size: 1.42rem; }
.hero-lead { max-width: 650px; margin: 32px 0 4px; font-size: clamp(1.1rem, 1.5vw, 1.35rem); color: #43575a; }
.values { margin: 12px 0 30px; font-weight: 700; letter-spacing: .035em; color: var(--accent); }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 12px 20px; border-radius: 999px; background: var(--blue); color: #fff; font-weight: 700; text-decoration: none; box-shadow: 0 10px 28px rgba(49, 90, 101, .18); }
.button:hover, .button:focus-visible { background: var(--blue-dark); }
.portrait-card {
  margin: 0;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: #d9e2df;
}
.portrait-card::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.28);
  pointer-events: none;
}
.portrait-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}
.section { padding: clamp(78px, 10vw, 132px) 0; scroll-margin-top: 84px; }
.section-light { background: var(--paper); }
.split { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(42px, 7vw, 100px); align-items: start; }
.prose { font-size: 1.08rem; }
.prose p:first-child { margin-top: 0; }
.prose p { max-width: 760px; }
.statement { margin-top: 30px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.35rem, 2vw, 1.9rem); font-style: italic; color: var(--accent); }
.centered { text-align: center; margin: 56px auto 0; max-width: 900px; }

.section-blue, .region-section { background: var(--blue); color: #f8fbfa; }
.section-blue .narrow { width: min(calc(100% - 40px), 860px); }
.section-kicker.light { color: #d8e6e3; }
.section-blue p { color: #edf3f1; }
.section-blue blockquote { margin: 42px 0; padding: 0 0 0 28px; border-left: 3px solid #d6a49a; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.65rem, 3.1vw, 2.65rem); line-height: 1.3; font-style: italic; color: #fff; }

.steps { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 42px; }
.step { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 6px 28px rgba(36, 57, 61, .05); }
.step span { color: var(--accent); font-weight: 800; font-size: .82rem; letter-spacing: .15em; }
.step p { margin-bottom: 0; color: #516164; }

.region-section { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); }
.region-section h2 { margin-bottom: 0; }
.light-prose { color: #edf3f1; }
.light-prose strong { color: #fff; }

.contact-section { background: var(--cream); }
.contact-card { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(44px, 7vw, 90px); padding: clamp(34px, 6vw, 70px); border-radius: 28px; background: #fff; box-shadow: var(--shadow); }
.contact-details { font-style: normal; border-left: 1px solid var(--line); padding-left: clamp(28px, 4vw, 52px); }
.contact-details p { margin: 0 0 24px; }
.contact-details span { display: inline-block; margin-bottom: 4px; color: var(--muted); font-size: .76rem; letter-spacing: .13em; text-transform: uppercase; font-weight: 750; }
.pending { font-weight: 600; color: #7b5a52; }

.footer { padding: 28px 0; background: #1f3439; color: #dce7e5; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: .9rem; }
.footer-links { display: flex; gap: 22px; }
.footer a { color: inherit; text-underline-offset: 4px; }

:focus-visible { outline: 3px solid #d18c7e; outline-offset: 4px; }

@media (max-width: 900px) {
  .nav-wrap { align-items: flex-start; padding-block: 16px; flex-direction: column; }
  .nav { width: 100%; overflow-x: auto; padding-bottom: 4px; }
  .nav a { white-space: nowrap; }
  .hero-grid, .split, .contact-card { grid-template-columns: 1fr; }
  .hero-copy { order: 1; }
  .portrait-card { order: 2; width: min(100%, 560px); }
  .split { gap: 24px; }
  .contact-details { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; padding-top: 30px; }
}

@media (max-width: 640px) {
  .wrap { width: min(calc(100% - 28px), var(--max)); }
  .nav { gap: 16px; font-size: .86rem; }
  .nav-cta { padding: 8px 12px; }
  .hero { padding-top: 58px; }
  h1 { font-size: clamp(2.45rem, 12vw, 4.1rem); }
  .steps { grid-template-columns: 1fr; }
  .step { padding: 24px; }
  .contact-card { padding: 26px; border-radius: 20px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
