
:root {
  --ink: #14212b;
  --muted: #4a5d6a;
  --paper: #f7f3ea;
  --card: #fffdf8;
  --teal: #0f6b6d;
  --teal-deep: #0a4547;
  --gold: #c4a35a;
  --line: #d9d0c0;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1100px 520px at 8% -10%, #dceeee 0%, transparent 55%),
    radial-gradient(900px 480px at 100% 0%, #f0e6c8 0%, transparent 50%),
    var(--paper);
  line-height: 1.55;
}
a { color: var(--teal); }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 1.15rem 3.5rem; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(247,243,234,.9);
  border-bottom: 1px solid var(--line);
}
.header-inner { max-width: 1080px; margin: 0 auto; padding: .75rem 1.15rem; display: flex; gap: 1rem; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.brand { font-family: Fraunces, Georgia, serif; font-weight: 700; font-size: 1.35rem; color: var(--teal-deep); text-decoration: none; }
.nav { display: flex; flex-wrap: wrap; gap: .55rem .85rem; }
.nav a { text-decoration: none; color: var(--muted); font-size: .92rem; font-weight: 600; }
.nav a:hover { color: var(--teal); }
.hero { margin: 1.2rem 0 1.5rem; border-radius: 18px; overflow: hidden; box-shadow: 0 18px 40px rgba(20,33,43,.16); position: relative; }
.hero img { width: 100%; display: block; max-height: 420px; object-fit: cover; }
.hero-caption {
  position: absolute; left: 1rem; bottom: 1rem;
  background: rgba(10,69,71,.88); color: #fff; padding: .55rem .9rem; border-radius: 999px; font-weight: 600;
}
h1,h2,h3 { font-family: Fraunces, Georgia, serif; color: var(--teal-deep); line-height: 1.15; }
h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); margin: .4rem 0; }
h2 { font-size: 1.45rem; margin: 1.8rem 0 .55rem; }
.lede { font-size: 1.15rem; color: var(--muted); max-width: 54ch; }
.disclaimer, .note { color: var(--muted); font-size: .92rem; }
.disclaimer {
  background: #fff6e8; border: 1px solid var(--gold); border-radius: 12px; padding: .85rem 1rem; margin: 1rem 0;
}
.tile-grid, .gallery {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: .9rem; margin: 1.2rem 0;
}
.tile, .gallery figure {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; text-decoration: none; color: inherit;
  box-shadow: 0 8px 20px rgba(20,33,43,.06);
}
.tile img, .gallery img { width: 100%; height: 130px; object-fit: cover; display: block; }
.tile span, .gallery figcaption { display: block; padding: .65rem .8rem .2rem; font-weight: 700; color: var(--teal-deep); }
.tile em { display: block; padding: 0 .8rem .8rem; font-style: normal; color: var(--muted); font-size: .9rem; }
.site-footer {
  margin-top: 3rem; padding: 1.4rem 0 2rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem;
}
.footer-links { display: flex; flex-wrap: wrap; gap: .5rem .9rem; margin: .6rem 0 1rem; }
ul { padding-left: 1.15rem; }
li { margin: .35rem 0; }
@media (max-width: 720px) {
  .hero-caption { position: static; display: inline-block; margin: .6rem 0 0; }
}
