:root {
  --cream: #f4efe6;
  --paper: #fffdf8;
  --ink: #2a231c;
  --muted: #5d5349;
  --line: #e4d9c7;
  --burgundy: #7a3040;
  --burgundy-dark: #5b2430;
  --gold: #b0893e;
  --gold-soft: #d4b36a;
  --sage: #6d7a62;
  --shadow: 0 18px 40px rgba(42, 35, 28, 0.1);
  --radius: 18px;
}

*,
*::before,
*::after {
  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(circle at top left, rgba(176, 137, 62, 0.08), transparent 28%),
    linear-gradient(180deg, var(--cream) 0%, #efe6d8 100%);
  line-height: 1.55;
}

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

a {
  color: var(--burgundy);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--ink);
  color: white;
  padding: 8px 12px;
  z-index: 100;
}

.skip-link:focus {
  top: 12px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.utility-bar {
  background: #2a231c;
  color: #f4efe6;
  font-size: 0.82rem;
}

.utility-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  flex-wrap: wrap;
}

.utility-bar a {
  color: #f4efe6;
  text-decoration: none;
  font-weight: 700;
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.brand img {
  width: 46px;
  height: 46px;
}

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

.brand-text strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}

.brand-text span {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

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

.nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.nav a[aria-current="page"],
.nav a:hover {
  color: var(--burgundy);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-btn,
.btn,
.social-btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.btn,
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary {
  background: var(--burgundy);
  color: #fffdf8;
}

.btn-primary:hover {
  background: var(--burgundy-dark);
}

.btn-ghost,
.social-btn {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
}

.menu-toggle {
  display: none;
}

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

.hero-grid,
.visit-grid,
.embed-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.kicker {
  margin: 0 0 10px;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.lede {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 42rem;
}

.hero-actions,
.social-row,
.find-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hours-card,
.panel,
.find-card,
.contact-card,
.embed-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hours-card,
.panel,
.contact-card {
  padding: 24px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
}

.status.is-closed .status-dot {
  background: var(--burgundy);
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.section {
  padding: 24px 0 64px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 24px;
}

.grid-3,
.finds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.panel h3,
.find-card h3 {
  font-size: 1.55rem;
  margin-bottom: 8px;
}

.find-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.find-photo {
  height: 340px;
  background: #efe4d2;
}

.find-photo img {
  width: 100%;
  height: 340px;
  object-fit: contain;
}

.find-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.find-actions {
  margin-top: auto;
}

.note {
  font-size: 0.88rem;
  color: var(--muted);
}

.map-frame {
  min-height: 380px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.form {
  display: grid;
  gap: 12px;
}

.form label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
}

.form input,
.form textarea,
.form select {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: inherit;
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.embed-box {
  min-height: 420px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.embed-label {
  margin: 0;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
}

.embed-slot {
  flex: 1;
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 18px;
  background: #fbf7ef;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 36px 0 28px;
  background: #2a231c;
  color: #f4efe6;
}

.site-footer a {
  color: #f4efe6;
}

.site-footer .note {
  color: #d9cbb8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

.thanks {
  padding: 80px 0 100px;
  text-align: center;
}

.alert {
  padding: 12px 14px;
  border-radius: 12px;
  background: #f8e8ea;
  color: var(--burgundy-dark);
}

@media (max-width: 980px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 118px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .hero-grid,
  .visit-grid,
  .embed-grid,
  .grid-3,
  .finds-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .header-actions .social-btn {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
