:root {
  --ink: #1c2530;
  --ink-soft: #3b4654;
  --paper: #f6f5f2;
  --paper-alt: #edeae3;
  --line: #d8d3c8;
  --navy: #1f2d40;
  --navy-deep: #16202e;
  --bronze: #9c7c3f;
  --bronze-soft: #cdb37a;
  --muted: #6b7280;
  --white: #ffffff;
  --radius: 2px;
  --shadow: 0 12px 28px -18px rgba(22, 32, 46, 0.35);
  --serif: Georgia, "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  --sans: "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--navy-deep);
  line-height: 1.2;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1.1em; color: var(--ink-soft); }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--bronze);
  font-weight: 600;
  margin-bottom: 0.8em;
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.85em 1.6em;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover { background: var(--navy-deep); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(246, 245, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.15;
  color: var(--navy-deep);
}

.brand-name small {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-top: 3px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  font-size: 0.88rem;
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--navy-deep);
  border-color: var(--bronze);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 10px;
  font-size: 1.3rem;
  color: var(--navy);
  cursor: pointer;
}

.hero {
  position: relative;
  color: var(--white);
  background: linear-gradient(160deg, rgba(22,32,46,0.92), rgba(22,32,46,0.72)), url("https://images.unsplash.com/photo-1449034446853-66c86144b0ad?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
  padding: 120px 0 100px;
}

.hero .eyebrow { color: var(--bronze-soft); }
.hero h1 { color: var(--white); max-width: 780px; }
.hero p.lead {
  color: rgba(255,255,255,0.82);
  max-width: 620px;
  font-size: 1.08rem;
}
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

.page-hero {
  background: var(--navy-deep);
  color: var(--white);
  padding: 80px 0 60px;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.3em; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 640px; margin: 0; }
.breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,0.75); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

section { padding: 88px 0; }
.section-alt { background: var(--paper-alt); }
.section-navy { background: var(--navy-deep); color: rgba(255,255,255,0.85); }
.section-navy h2 { color: var(--white); }

.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.card .ph {
  font-size: 1.7rem;
  color: var(--bronze);
  margin-bottom: 16px;
}

.card h3 { margin-bottom: 0.5em; }
.card p { margin-bottom: 0; font-size: 0.94rem; }

.icon-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.icon-row:last-child { border-bottom: 1px solid var(--line); }
.icon-row .ph { font-size: 1.4rem; color: var(--bronze); margin-top: 2px; }
.icon-row h4 { margin: 0 0 6px; font-family: var(--sans); font-size: 1rem; font-weight: 600; color: var(--navy-deep); }
.icon-row p { margin: 0; font-size: 0.92rem; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 40px 0;
  margin-top: 20px;
}
.stat-row .stat-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--bronze-soft);
  display: block;
}
.stat-row .stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
}

.quote-block {
  border-left: 3px solid var(--bronze);
  padding-left: 24px;
  margin: 0;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--navy-deep);
}

.figure {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.figure img { width: 100%; height: 100%; object-fit: cover; }

.notice-banner {
  background: #fbf6e9;
  border: 1px solid #e6d8a8;
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: 0.9rem;
  color: #5a4a15;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.notice-banner .ph { font-size: 1.3rem; flex-shrink: 0; }

.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  text-align: left;
}
.team-photo { aspect-ratio: 4/5; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-body { padding: 20px 22px 26px; }
.team-body h3 { margin-bottom: 2px; font-size: 1.08rem; }
.team-role { color: var(--bronze); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; display: block; }
.team-body p { font-size: 0.88rem; margin-bottom: 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
}
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--sans);
  font-size: 0.94rem;
  color: var(--ink);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--bronze);
  outline-offset: 1px;
  border-color: var(--bronze);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 24px; }
.form-check input { margin-top: 4px; }
.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 10px;
}
.form-status {
  margin-top: 16px;
  font-size: 0.9rem;
  padding: 12px 14px;
  border-radius: var(--radius);
  display: none;
}
.form-status.success { display: block; background: #eaf3ea; color: #2d5a2d; border: 1px solid #c7dfc7; }
.form-status.error { display: block; background: #f8e9e9; color: #7a2c2c; border: 1px solid #e8c6c6; }

.contact-info-card {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.85);
  padding: 36px 32px;
  border-radius: var(--radius);
}
.contact-info-card h3 { color: var(--white); }
.contact-line {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.contact-line:first-of-type { border-top: none; }
.contact-line .ph { font-size: 1.25rem; color: var(--bronze-soft); flex-shrink: 0; }
.contact-line a { color: rgba(255,255,255,0.85); text-decoration: none; }
.contact-line a:hover { text-decoration: underline; }
.map-embed {
  margin-top: 22px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
}
.map-embed iframe { width: 100%; height: 220px; border: 0; display: block; }

.legal-content { max-width: 780px; }
.legal-content h2 { margin-top: 2em; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content ul { color: var(--ink-soft); padding-left: 1.2em; }
.legal-content li { margin-bottom: 0.5em; }
.toc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  margin-bottom: 40px;
}
.toc h4 { font-family: var(--sans); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--navy-deep); margin-bottom: 12px; }
.toc ol { margin: 0; padding-left: 1.2em; color: var(--ink-soft); font-size: 0.92rem; }
.toc li { margin-bottom: 6px; }
.toc a { text-decoration: none; color: var(--ink-soft); }
.toc a:hover { color: var(--navy-deep); text-decoration: underline; }
.updated-tag { font-size: 0.8rem; color: var(--muted); margin-bottom: 30px; }

.cta-band {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.78); max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; justify-content: center; gap: 14px; margin-top: 24px; flex-wrap: wrap; }

.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 28px;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; }
.footer-brand img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.footer-brand span { font-family: var(--serif); color: var(--white); font-size: 1rem; }
.footer-col h4 {
  font-family: var(--sans);
  color: var(--white);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}
.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  max-width: 760px;
  margin-top: 18px;
  line-height: 1.6;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 620px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 24px;
  z-index: 900;
  display: none;
}
.cookie-banner.visible { display: block; }
.cookie-banner p { font-size: 0.86rem; margin-bottom: 14px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 0.6em 1.2em; font-size: 0.82rem; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  z-index: 1000;
}
.skip-link:focus { left: 10px; top: 10px; }

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
    display: none;
    gap: 4px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; padding: 10px 0; }
  .nav-toggle { display: inline-flex; }
  .header-inner .btn { display: none; }
  section { padding: 64px 0; }
  .hero { padding: 90px 0 70px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

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