:root {
  --forest: #163328;
  --forest-deep: #0f241c;
  --moss: #2f5d43;
  --mist: #dce8dc;
  --cream: #f4efe4;
  --paper: #fffdf8;
  --ink: #1f1a14;
  --muted: #5c564c;
  --gold: #c9a227;
  --line: rgba(31, 26, 20, 0.12);
  --shadow: 0 18px 40px rgba(22, 51, 40, 0.12);
  --radius: 22px;
  --font-serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --font-sans: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, #e7f0e4 0%, transparent 55%),
    linear-gradient(180deg, #f7f3ea 0%, var(--cream) 100%);
  font-family: var(--font-sans);
  line-height: 1.55;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--moss); }

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

.site-header {
  background: rgba(244, 239, 228, 0.92);
  border-bottom: 1px solid var(--line);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}
.brand strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 20px;
}
.brand span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}
.brand img { width: 46px; height: 46px; }

.nav { display: flex; gap: 8px; }
.nav a {
  text-decoration: none;
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}
.nav a:hover {
  background: var(--forest);
  color: #fff;
}

.hero { padding: 40px 0 8px; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--moss);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 12px;
}
.kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
}

h1, h2 {
  font-family: var(--font-serif);
  line-height: 1.15;
  margin: 0 0 12px;
}
h1 { font-size: clamp(36px, 7vw, 56px); }
h2 { font-size: 28px; }

.lede {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 18px;
}

.photo { margin: 24px 0 0; }
.photo img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.photo figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.section { padding: 12px 0 36px; }

.panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}
th, td {
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
th { width: 30%; color: var(--muted); font-weight: 600; }

.copy-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
}
.copy-row button {
  flex: 0 0 auto;
  border: 0;
  background: var(--mist);
  border-radius: 999px;
  padding: 6px 10px;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.map {
  width: 100%;
  min-height: 380px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.footer {
  background: var(--forest-deep);
  color: #efe6d4;
  padding: 24px 0;
}
.footer a { color: #fff; }
.fine { color: #cfc3aa; font-size: 13px; }

@media (max-width: 640px) {
  .header-row { flex-wrap: wrap; }
}
