:root {
  --bg: #f6efe4;
  --bg-2: #efe5d4;
  --ink: #2a1a14;
  --ink-soft: #5b4439;
  --muted: #8a7466;
  --accent: #b8442a;
  --accent-deep: #8a2a1a;
  --gold: #c98a2b;
  --rule: rgba(42, 26, 20, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(201, 138, 43, 0.18), transparent 60%),
    radial-gradient(ellipse at 100% 100%, rgba(184, 68, 42, 0.12), transparent 55%),
    var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--accent-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 120ms ease;
}

a:hover {
  color: var(--accent);
}

/* ---------- nav ---------- */

.nav {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.75rem clamp(1.25rem, 5vw, 3rem);
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.mark {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.nav-link {
  font-size: 0.95rem;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
}

.nav-link:hover {
  color: var(--accent-deep);
  border-bottom-color: var(--accent);
}

/* ---------- main ---------- */

main {
  flex: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1.25rem, 5vw, 3rem) 4rem;
}

/* ---------- hero ---------- */

.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(1rem, 3vw, 2rem) 0 clamp(3rem, 7vw, 5rem);
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
  }
}

.art {
  margin: 0;
  position: relative;
}

.art::before {
  content: "";
  position: absolute;
  inset: -4% -2% 0 -2%;
  background: radial-gradient(
    ellipse at center,
    rgba(201, 138, 43, 0.22),
    rgba(184, 68, 42, 0.1) 40%,
    transparent 70%
  );
  filter: blur(30px);
  z-index: 0;
}

.art img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}

.intro {
  max-width: 36ch;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin: 0 0 1.25rem;
  font-weight: 500;
}

h1 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 1.5rem;
  color: var(--ink);
}

h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-deep);
}

.lede {
  font-size: 1.0625rem;
  color: var(--ink-soft);
  margin: 0;
  max-width: 38ch;
}

/* ---------- meta cards ---------- */

.meta {
  padding-top: clamp(2rem, 5vw, 3rem);
  border-top: 1px solid var(--rule);
}

.card h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-size: 1.25rem;
  margin: 0 0 0.6rem;
  letter-spacing: -0.005em;
}

.card p {
  margin: 0 0 0.5rem;
  color: var(--ink-soft);
}

.card .muted,
.hours .muted {
  color: var(--muted);
  font-size: 0.9rem;
}

.hours {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1.25rem;
  row-gap: 0.35rem;
  margin: 0.9rem 0 0;
  font-size: 0.95rem;
}

.hours dt {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-top: 0.18rem;
}

.hours dd {
  margin: 0;
  color: var(--ink-soft);
}

.email {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
}

/* ---------- footer ---------- */

footer {
  padding: 2rem clamp(1.25rem, 5vw, 3rem) 2.5rem;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  border-top: 1px solid var(--rule);
}

footer p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

/* ---------- selection ---------- */

::selection {
  background: rgba(184, 68, 42, 0.25);
  color: var(--ink);
}
