:root {
  --sand: #e9e0d2;
  --stone: #b9a789;
  --concrete: #8a7d6b;
  --plum: #6a4a55;
  --ink: #2e2823;
  --rose: #c98b76;
  --cream: #f6f1e8;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: Georgia, "Iowan Old Style", "Times New Roman", serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
}
h1, h2, h3, nav { font-family: "Optima", "Segoe UI", system-ui, sans-serif; }

/* Nav */
header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(246, 241, 232, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(46, 40, 35, 0.12);
}
nav {
  max-width: 1080px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem; gap: 1rem;
}
nav .brand { font-weight: 700; letter-spacing: 0.03em; font-size: 1.15rem; color: var(--ink); text-decoration: none; }
nav ul { list-style: none; display: flex; gap: 1.5rem; flex-wrap: wrap; }
nav a { text-decoration: none; color: var(--ink); font-size: 0.95rem; opacity: 0.8; }
nav a:hover { opacity: 1; color: var(--plum); }
nav a.active { opacity: 1; color: var(--plum); font-weight: 700; }

/* Hero */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 4rem 1.5rem;
  color: var(--cream);
  background:
    radial-gradient(ellipse at 50% 120%, rgba(201,139,118,0.35), transparent 60%),
    linear-gradient(160deg, #4b3b40 0%, #6a5a4b 45%, #8a7d6b 100%);
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 30%, transparent 30%, rgba(30,25,22,0.35));
}
.hero-inner { position: relative; z-index: 1; max-width: 760px; }
.hero .eyebrow { letter-spacing: 0.35em; text-transform: uppercase; font-size: 0.8rem; opacity: 0.85; font-family: "Optima", sans-serif; }
.hero h1 { font-size: clamp(2.5rem, 7vw, 5rem); margin: 1rem 0; font-weight: 600; letter-spacing: 0.01em; }
.hero p { font-size: 1.2rem; opacity: 0.92; max-width: 34rem; margin: 0 auto; }
.cta {
  display: inline-block; margin-top: 2rem;
  padding: 0.8rem 2rem; border-radius: 999px;
  background: var(--rose); color: #2e2823; font-weight: 600;
  text-decoration: none; font-family: "Optima", sans-serif;
  transition: transform 0.15s ease;
}
.cta:hover { transform: translateY(-2px); }

/* Sections */
section { max-width: 1080px; margin: 0 auto; padding: 5rem 1.5rem; }
.page-head { padding-top: 3.5rem; }
section h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600; margin-bottom: 1.2rem; color: var(--plum);
}
.lead { font-size: 1.15rem; max-width: 46rem; }
.divider { width: 60px; height: 3px; background: var(--rose); border-radius: 2px; margin: 0 0 1.8rem; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.card {
  background: #fff;
  border: 1px solid rgba(46,40,35,0.08);
  border-radius: 16px; padding: 1.75rem;
  box-shadow: 0 6px 20px rgba(46,40,35,0.05);
}
.card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--ink); }
.card p { font-size: 0.98rem; opacity: 0.85; }

.alt { background: var(--sand); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 720px) { .split { grid-template-columns: 1fr; } }
.fact { font-size: 3rem; font-weight: 700; color: var(--plum); font-family: "Optima", sans-serif; line-height: 1; }
.fact-label { opacity: 0.7; font-size: 0.95rem; }
.facts { display: flex; gap: 2.5rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* Visit */
.visit-box {
  background: #fff; border-radius: 16px; padding: 2rem;
  border: 1px solid rgba(46,40,35,0.08);
}
.visit-box p { margin-bottom: 0.4rem; }
.visit-box a { color: var(--plum); }

footer {
  background: var(--ink); color: var(--sand);
  text-align: center; padding: 2.5rem 1.5rem; font-size: 0.9rem;
}
footer a { color: var(--rose); text-decoration: none; }
.note { font-size: 0.8rem; opacity: 0.6; margin-top: 0.8rem; }
