:root {
  --ink: #17232d;
  --muted: #5a6872;
  --paper: #fbfaf7;
  --white: #fff;
  --accent: #956f2c;
  --accent-dark: #6f4f17;
  --navy: #19384d;
  --line: #dedbd3;
  --shadow: 0 18px 55px rgba(25, 39, 49, 0.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--paper); font: 17px/1.65 Georgia, "Times New Roman", serif; }
a { color: var(--accent-dark); }
img { display: block; max-width: 100%; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 99; padding: .7rem 1rem; background: var(--white); }
.skip-link:focus { top: 1rem; }
.site-header { position: sticky; top: 0; z-index: 20; display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1rem clamp(1.2rem, 4vw, 4rem); background: rgba(251,250,247,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.brand { display: flex; align-items: center; gap: .75rem; color: var(--ink); text-decoration: none; font-family: Arial, sans-serif; }
.brand-mark { display: grid; place-items: center; width: 2.8rem; height: 2.8rem; border-radius: 50%; color: var(--white); background: var(--navy); font: 700 1.35rem Arial, sans-serif; }
.brand strong, .brand small { display: block; }
.brand strong { font-size: 1rem; letter-spacing: .05em; text-transform: uppercase; }
.brand small { color: var(--muted); font-size: .72rem; }
nav { display: flex; flex-wrap: wrap; gap: .25rem; font-family: Arial, sans-serif; font-size: .9rem; }
nav a { padding: .55rem .75rem; border-radius: 999px; color: var(--ink); text-decoration: none; }
nav a:hover, nav a[aria-current="page"] { color: var(--white); background: var(--navy); }
.menu-button { display: none; }
.hero { min-height: 68vh; display: grid; align-items: end; background: linear-gradient(90deg, rgba(10,25,35,.88), rgba(10,25,35,.45)), var(--hero) center/cover; color: var(--white); }
.hero-inner { width: min(1120px, 100%); margin: 0 auto; padding: clamp(5rem, 12vw, 9rem) clamp(1.2rem, 4vw, 4rem); }
.eyebrow { margin: 0 0 .8rem; color: #e8ce93; font: 700 .78rem/1.2 Arial, sans-serif; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3 { margin: 0 0 .8rem; line-height: 1.12; }
h1 { max-width: 850px; font-size: clamp(2.6rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.4rem; }
.hero p { max-width: 720px; font-size: clamp(1.05rem, 2vw, 1.28rem); }
.button { display: inline-block; margin-top: 1rem; padding: .85rem 1.25rem; border: 0; border-radius: 4px; color: var(--white); background: var(--accent); font: 700 .9rem Arial, sans-serif; text-decoration: none; cursor: pointer; }
.button:hover { background: var(--accent-dark); }
.section { padding: clamp(3.5rem, 8vw, 7rem) clamp(1.2rem, 4vw, 4rem); }
.section-inner { width: min(1120px, 100%); margin: 0 auto; }
.section:nth-child(even) { background: var(--white); }
.lead { max-width: 820px; color: var(--muted); font-size: 1.15rem; }
.grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.4rem; margin-top: 2rem; }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card { padding: clamp(1.4rem, 3vw, 2.2rem); border: 1px solid var(--line); border-radius: 8px; background: var(--white); box-shadow: var(--shadow); }
.card img { width: 100%; aspect-ratio: 4/3; margin-bottom: 1.25rem; object-fit: cover; border-radius: 5px; }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.split > img { width: 100%; max-height: 650px; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; text-align: center; }
.stat { padding: 2rem 1rem; border-top: 3px solid var(--accent); }
.stat strong { display: block; color: var(--navy); font-size: 2.5rem; }
.prose { width: min(860px, 100%); }
.prose h2 { margin-top: 2.6rem; font-size: 2rem; }
.prose h3 { margin-top: 2rem; }
.prose li { margin-bottom: .55rem; }
.contact-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 2rem; }
.contact-card { padding: 2rem; color: var(--white); background: var(--navy); border-radius: 8px; }
.contact-card a { color: #f1d79c; }
form { display: grid; gap: 1rem; }
label { display: grid; gap: .35rem; font: 700 .86rem Arial, sans-serif; }
input, textarea { width: 100%; padding: .85rem; border: 1px solid #abb3b8; border-radius: 4px; background: var(--white); color: var(--ink); font: 1rem Arial, sans-serif; }
textarea { min-height: 145px; resize: vertical; }
.consent { grid-template-columns: auto 1fr; align-items: start; font-weight: 400; }
.consent input { width: auto; margin-top: .25rem; }
.form-status { min-height: 1.5rem; margin: 0; font-family: Arial, sans-serif; }
.site-footer { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; padding: 3rem clamp(1.2rem, 4vw, 4rem); color: #dce3e7; background: #102631; font-family: Arial, sans-serif; }
.site-footer a { color: #f1d79c; }
.copyright { grid-column: 1 / -1; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.18); font-size: .82rem; }
@media (max-width: 800px) {
  .menu-button { display: block; padding: .6rem .8rem; border: 1px solid var(--line); background: var(--white); }
  nav { position: absolute; left: 0; right: 0; top: 100%; display: none; padding: 1rem; background: var(--paper); border-bottom: 1px solid var(--line); }
  nav.open { display: grid; }
  .grid, .grid.three, .split, .stats, .contact-wrap, .site-footer { grid-template-columns: 1fr; }
  .hero { min-height: 58vh; }
  h1 { font-size: clamp(2.5rem, 12vw, 4rem); }
}
