:root {
  --ink: #102d35;
  --ink-soft: #34545a;
  --teal: #0e5962;
  --blue: #2b83a4;
  --coral: #e46e58;
  --cream: #f5f1ea;
  --paper: #fffdf9;
  --mist: #dcebed;
  --line: rgba(16, 45, 53, .14);
  --shadow: 0 18px 50px rgba(16, 45, 53, .12);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "Aptos", "Segoe UI", sans-serif; line-height: 1.65; }
body::before { content: ""; position: fixed; inset: 0 0 auto; height: 5px; z-index: 20; background: var(--coral); }
a { color: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.skip-link { position: absolute; left: 16px; top: -50px; background: var(--ink); color: white; padding: 10px 14px; z-index: 30; }
.skip-link:focus { top: 16px; }
.site-header { position: sticky; top: 0; z-index: 10; background: rgba(255,253,249,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px); }
.navbar { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; line-height: 1.05; }
.brand-mark { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: white; background: var(--teal); font-family: Georgia, serif; font-size: 25px; }
.brand-name { font-family: Georgia, serif; font-size: 18px; letter-spacing: .02em; }
.brand-name small { display: block; color: var(--coral); font-family: "Aptos", sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; margin-top: 4px; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; padding: 0; margin: 0; font-size: 14px; font-weight: 600; }
.nav-links a { text-decoration: none; color: var(--ink-soft); }
.nav-links a.button { color: white; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--coral); }
.nav-links a.button:hover { color: white; }
.menu-toggle { display: none; border: 0; background: none; color: var(--ink); font-size: 28px; cursor: pointer; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 13px 20px; border: 1px solid var(--teal); background: var(--teal); color: white; text-decoration: none; font-weight: 700; font-size: 14px; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); background: var(--ink); }
.button.alt { color: var(--teal); background: transparent; }
.button.alt:hover { color: white; }
.hero { position: relative; overflow: hidden; background: var(--cream); }
.hero::after { content: ""; position: absolute; width: 360px; height: 360px; right: 4%; top: -100px; border: 1px solid rgba(43,131,164,.25); border-radius: 50%; box-shadow: 0 0 0 34px rgba(43,131,164,.06), 0 0 0 70px rgba(43,131,164,.035); }
.hero-grid { min-height: 590px; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 70px; position: relative; z-index: 1; }
.eyebrow { color: var(--coral); font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 400; line-height: 1.1; }
h1 { font-size: clamp(44px, 6vw, 78px); letter-spacing: -.04em; max-width: 700px; }
h2 { font-size: clamp(32px, 4vw, 52px); letter-spacing: -.03em; }
h3 { font-size: 27px; }
.lead { color: var(--ink-soft); font-size: 19px; max-width: 570px; margin: 28px 0 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-visual { min-height: 460px; position: relative; }
.hero-photo { width: 88%; height: 440px; margin-left: auto; object-fit: cover; object-position: center; box-shadow: var(--shadow); }
.hero-badge { position: absolute; left: -20px; bottom: 12px; width: 190px; padding: 20px; color: white; background: var(--teal); box-shadow: var(--shadow); }
.hero-badge strong { display: block; font-family: Georgia, serif; font-size: 29px; font-weight: 400; }
.hero-badge span { display: block; font-size: 12px; margin-top: 7px; color: var(--mist); }
.band { padding: 92px 0; }
.band.tint { background: var(--mist); }
.band.dark { background: var(--ink); color: white; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 40px; }
.section-head p { max-width: 430px; color: var(--ink-soft); margin: 0; }
.dark .section-head p, .dark .muted { color: #c2d7d8; }
.three-up { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature { padding: 28px; border: 1px solid var(--line); background: var(--paper); min-height: 205px; }
.feature-number { color: var(--coral); font-family: Georgia, serif; font-size: 21px; }
.feature h3 { margin: 18px 0 10px; font-size: 25px; }
.feature p { color: var(--ink-soft); margin: 0; }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.split.reverse { grid-template-columns: 1.1fr .9fr; }
.split-image { width: 100%; height: 390px; object-fit: cover; }
.copy p { color: var(--ink-soft); max-width: 650px; }
.check-list { padding: 0; margin: 25px 0 0; list-style: none; display: grid; gap: 13px; }
.check-list li { display: flex; gap: 12px; align-items: start; color: var(--ink-soft); }
.check-list li::before { content: "✓"; display: grid; flex: 0 0 23px; height: 23px; place-items: center; border-radius: 50%; color: white; background: var(--coral); font-size: 13px; font-weight: 700; }
.page-hero { padding: 92px 0 80px; background: linear-gradient(110deg, var(--cream) 0 64%, var(--mist) 64%); }
.page-hero h1 { max-width: 800px; }
.page-hero p { max-width: 650px; font-size: 18px; color: var(--ink-soft); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service { padding: 30px; border-left: 4px solid var(--coral); background: var(--cream); }
.service h3 { margin-bottom: 12px; }
.service p { color: var(--ink-soft); margin: 0; }
.people { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.person { background: var(--paper); }
.person img { width: 100%; aspect-ratio: 1.35; object-fit: cover; }
.person figcaption { padding: 18px 20px 21px; font-family: Georgia, serif; font-size: 20px; }
.contact-layout { display: grid; grid-template-columns: 1fr .8fr; gap: 55px; align-items: start; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
label { display: grid; gap: 7px; color: var(--ink-soft); font-size: 13px; font-weight: 700; }
label.full { grid-column: 1 / -1; }
input, textarea { width: 100%; border: 1px solid var(--line); padding: 13px 14px; background: #fff; color: var(--ink); font: inherit; }
textarea { min-height: 150px; resize: vertical; }
.trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
input:focus, textarea:focus, button:focus, a:focus { outline: 3px solid rgba(228,110,88,.45); outline-offset: 3px; }
.contact-card { padding: 34px; color: white; background: var(--teal); box-shadow: var(--shadow); }
.contact-card h2 { font-size: 36px; margin-bottom: 24px; }
.contact-item { border-top: 1px solid rgba(255,255,255,.24); padding: 17px 0; }
.contact-item small { display: block; color: var(--mist); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.contact-item a { display: inline-block; color: white; text-decoration: none; margin-top: 4px; }
.notice { display: none; padding: 12px 14px; margin-top: 16px; color: var(--teal); background: var(--mist); font-size: 14px; }
.notice.visible { display: block; }
.site-footer { padding: 45px 0 25px; color: #c2d7d8; background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 30px; padding-bottom: 35px; }
.site-footer h3 { color: white; font-size: 23px; margin-bottom: 12px; }
.site-footer p { margin: 5px 0; font-size: 14px; }
.site-footer a { color: white; text-decoration: none; }
.copyright { border-top: 1px solid rgba(255,255,255,.16); padding-top: 20px; font-size: 12px; }
.reveal { animation: rise .7s ease both; }
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@media (max-width: 780px) {
  .container { width: min(calc(100% - 32px), var(--max)); }
  .navbar { min-height: 72px; }
  .menu-toggle { display: block; }
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; padding: 18px 16px 24px; background: var(--paper); border-bottom: 1px solid var(--line); flex-direction: column; align-items: flex-start; gap: 16px; }
  .nav-links.open { display: flex; }
  .hero-grid, .split, .split.reverse, .contact-layout { grid-template-columns: 1fr; gap: 38px; }
  .hero-grid { min-height: 0; padding: 70px 0 60px; }
  .hero-visual { min-height: 350px; }
  .hero-photo { height: 340px; width: 92%; }
  .hero-badge { left: 0; }
  .three-up, .people, .services-grid { grid-template-columns: 1fr; }
  .band { padding: 64px 0; }
  .section-head { display: block; }
  .section-head p { margin-top: 18px; }
  .page-hero { padding: 65px 0 55px; background: var(--cream); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; } }
