:root {
  --paper: #f4efe8;
  --ink: #1c1916;
  --mute: #5c534c;
  --oak: #c4a574;
  --steel: #2a2a28;
  --line: rgba(28, 25, 22, 0.12);
  --serif: "Instrument Serif", "Times New Roman", serif;
  --sans: "Outfit", "Apple SD Gothic Neo", sans-serif;
  --pad: clamp(1.25rem, 4vw, 3.5rem);
  --max: 70rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: var(--paper);
  padding: 0.6rem 0.9rem;
  z-index: 20;
}

.skip:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem var(--pad);
  background: rgba(244, 239, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-block;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 700;
  font-synthesis: weight;
  letter-spacing: 0.06em;
  transform: scaleX(1.08);
  transform-origin: left center;
  color: #3a3a3a;
  text-decoration: none;
  -webkit-text-stroke: 0.35px currentColor;
}

.nav {
  display: flex;
  gap: 1.4rem;
}

.nav a {
  text-decoration: none;
  font-size: 0.95rem;
}

.nav a:hover {
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.nav-toggle {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 1px;
  margin: 6px 4px;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: calc(100vh - 4rem);
}

.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--pad);
}

.eyebrow {
  margin: 0 0 0.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.lede {
  margin: 0 0 1.6rem;
  color: var(--mute);
  max-width: 34rem;
}

.hero-actions,
.btn {
  display: inline-flex;
  gap: 0.75rem;
}

.btn {
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.15rem;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font: inherit;
  cursor: pointer;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
}

.band {
  padding: 1.1rem var(--pad);
  background: var(--steel);
  color: var(--paper);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.about,
.shelves,
.split,
.visit,
.contact {
  padding: clamp(3.5rem, 8vw, 6rem) var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}

.about,
.split,
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.split-rev figure {
  order: 2;
}

.about figure img,
.split figure img,
.visit figure img {
  width: 100%;
  border-radius: 10px;
}

.section-head {
  max-width: 36rem;
  margin-bottom: 2rem;
}

.shelf-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.shelf-grid li {
  padding: 1.3rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fffdf9;
}

.shelf-grid h3 {
  margin: 0 0 0.4rem;
  font-size: 1.35rem;
}

.shelf-grid p,
.note,
.mail-line {
  margin: 0;
  color: var(--mute);
}

.note {
  margin-top: 0.8rem;
}

.visit dl {
  margin: 0;
  display: grid;
  gap: 1.2rem;
}

.visit dt {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}

.visit dd {
  margin: 0.25rem 0 0;
}

.inquire {
  display: grid;
  gap: 0.9rem;
  max-width: 32rem;
}

.inquire label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
}

.inquire input,
.inquire textarea {
  font: inherit;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.mail-line {
  margin-top: 1rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem var(--pad);
  border-top: 1px solid var(--line);
  color: var(--mute);
  font-size: 0.92rem;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1rem var(--pad) 1.2rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .nav.open {
    display: flex;
  }

  .hero,
  .about,
  .split,
  .visit-grid,
  .shelf-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-figure img {
    height: 52vh;
  }

  .split-rev figure {
    order: 0;
  }

  .site-footer {
    flex-direction: column;
  }
}
