:root {
  --bg: #f3f1ef;
  --surface: #ffffff;
  --surface-2: #ebe7e2;
  --text: #1c1a2e;
  --muted: #6b6780;
  --accent: #6b4a9b;
  --accent-2: #a89b63;
  --mint: #cfe3d4;
  --border: #ddd7ce;
  --border-strong: #c4bbac;
  --shadow: 0 10px 30px rgba(28, 26, 46, 0.08);
  --radius: 14px;
  --radius-lg: 22px;

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-haunt: "Special Elite", "Courier New", monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(1160px, calc(100% - 2.5rem));
  margin: 0 auto;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.14;
  font-weight: 700;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); letter-spacing: -0.005em; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

p { color: var(--text); }
.muted { color: var(--muted); }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 3rem 0;
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 0;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}

.brand-sub {
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-links a {
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.nav-links a:hover { color: var(--accent); }
.nav-links a.active { border-bottom-color: var(--accent); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.15rem;
  background: var(--text);
  color: var(--surface);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 0.15s ease, transform 0.15s ease;
}

.nav-cta:hover { background: var(--accent); transform: translateY(-1px); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  cursor: pointer;
}

.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: #553979; transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-secondary:hover { border-color: var(--text); }

/* Hero */
.hero {
  padding: 4rem 0 5rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-copy .eyebrow { display: block; margin-bottom: 1.2rem; }
.hero-copy h1 { margin-bottom: 1.2rem; }
.hero-copy .lede { font-size: 1.1rem; color: var(--muted); margin-bottom: 2rem; max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }

.hero-visual,
.split-visual {
  aspect-ratio: 4 / 5;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-2);
  box-shadow: var(--shadow);
}

.hero-visual img,
.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Info band */
.info-band {
  background: var(--text);
  color: var(--surface);
  padding: 1.2rem 0;
  font-size: 0.9rem;
}

.info-band-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
}

.info-band-inner strong { color: var(--accent-2); font-weight: 600; margin-right: 0.4rem; }

/* Sections */
section.block { padding: 5rem 0; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.section-head .eyebrow { display: block; margin-bottom: 0.6rem; }
.section-head h2 { max-width: 22ch; }
.section-head p { color: var(--muted); max-width: 40ch; }

/* Grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: start;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card h3 { margin-bottom: 0.6rem; }
.card p { color: var(--muted); font-size: 0.95rem; }

.service-card { display: flex; flex-direction: column; gap: 0.8rem; }

.service-card .price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}

.service-card .price { font-family: var(--font-display); font-size: 1.5rem; color: var(--accent); }

.section-footer-link { margin-top: 2rem; text-align: center; }

.inline-link {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease;
}
.inline-link:hover { border-bottom-color: var(--accent); }

/* Quote */
.quote-block {
  background: var(--surface);
  border-left: 3px solid var(--accent);
  padding: 2.5rem 3rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  max-width: 780px;
  margin: 0 auto;
}

.quote-block blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 1rem;
}

.quote-block cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Haunted quote pull */
.haunt-pull {
  font-family: var(--font-haunt);
  background: var(--surface);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 620px;
  margin: 2.5rem auto 0;
  text-align: center;
  line-height: 1.5;
}
.haunt-pull::before { content: "—  "; }
.haunt-pull::after { content: "  —"; }

/* About split */
.split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

/* Visit grid */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.visit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem;
}

.visit-card h3 { margin-bottom: 1rem; }

.hours-list { list-style: none; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { color: var(--muted); }
.hours-list .time { font-weight: 500; }

.closed-note {
  margin-top: 1.2rem;
  padding: 0.9rem 1.1rem;
  background: var(--surface-2);
  border-radius: 10px;
  font-size: 0.85rem;
  color: var(--muted);
  border-left: 3px solid var(--accent);
}

.contact-line {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.contact-line:last-child { border-bottom: none; }
.contact-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  min-width: 70px;
}
.contact-value { font-weight: 500; }
.contact-value a:hover { color: var(--accent); }

.map-placeholder {
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(107, 103, 128, 0.1), rgba(168, 155, 99, 0.1)),
    repeating-linear-gradient(0deg, var(--surface-2) 0 1px, var(--bg) 1px 30px),
    repeating-linear-gradient(90deg, var(--surface-2) 0 1px, var(--bg) 1px 30px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

/* Services / price list */
.price-list {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  max-width: 780px;
  margin: 0 auto 2.5rem;
}

.price-list h3 {
  font-family: var(--font-display);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.price-row-full {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px dashed var(--border);
}
.price-row-full:last-child { border-bottom: none; }

.price-row-full .service-name { font-weight: 600; font-size: 1.05rem; }
.price-row-full .service-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.2rem;
}
.price-row-full .price-val {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--accent);
  white-space: nowrap;
}

.price-note {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: var(--surface-2);
  border-radius: 10px;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

/* Timeline */
.timeline {
  list-style: none;
  max-width: 780px;
  margin: 0 auto;
}

.timeline li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.timeline li:last-child { border-bottom: none; }

.timeline-year {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  font-weight: 700;
}

.timeline-body h3 { margin-bottom: 0.5rem; }
.timeline-body p { color: var(--muted); }

/* Sightings log */
.sightings {
  list-style: none;
  max-width: 780px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.sightings li {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.5rem;
  font-family: var(--font-haunt);
  font-size: 0.95rem;
}

.sightings .date { color: var(--accent); }
.sightings .log { color: var(--text); }

/* Footer */
.site-footer {
  background: var(--text);
  color: var(--surface);
  padding: 3.5rem 0 2rem;
  margin-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.site-footer h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1rem;
}

.site-footer .brand-footer .brand-name { color: var(--surface); }
.site-footer .brand-footer .brand-sub { color: rgba(255, 255, 255, 0.5); }

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 1rem 0 1.5rem;
  color: var(--accent-2);
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.9rem; color: rgba(255, 255, 255, 0.8); }
.footer-links a:hover { color: var(--accent-2); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a { color: rgba(255, 255, 255, 0.7); }
.footer-bottom a:hover { color: var(--accent-2); }

/* Page header */
.page-header {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--border);
}

.page-header .eyebrow { display: block; margin-bottom: 0.8rem; }
.page-header h1 { margin-bottom: 1rem; max-width: 18ch; }
.page-header .lede { color: var(--muted); font-size: 1.1rem; max-width: 58ch; }

/* Responsive */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2.5rem 0 3rem;
  }
.split { grid-template-columns: 1fr; gap: 2rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2, .visit-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .nav-links { display: none; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .timeline li, .sightings li { grid-template-columns: 1fr; gap: 0.5rem; padding: 1.25rem 0; }
  .price-list { padding: 1.8rem 1.5rem; }
  section.block { padding: 3rem 0; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .nav-cta { padding: 0.55rem 0.9rem; font-size: 0.8rem; }
  .brand-sub { display: none; }
}
