:root {
  --paper: #f4ede0;
  --paper-deep: #efe4d2;
  --ink: #3a2418;
  --ink-soft: #6a5344;
  --gold: #b08a58;
  --gold-line: rgba(176, 138, 88, 0.55);
  --espresso: #241610;
  --cream: #f8f2e8;
  --script: "Pinyon Script", "Apple Chancery", "Palatino Linotype", cursive;
  --serif: "Cormorant Garamond", "Iowan Old Style", Palatino, serif;
  --sans: "Source Sans 3", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --measure: 68rem;
  --gutter: clamp(1.25rem, 4vw, 2.75rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

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

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  padding: 0.4rem 0.7rem;
  background: var(--ink);
  color: var(--paper);
  z-index: 20;
}

.skip:focus {
  top: 0.75rem;
}

.banner {
  background: #1a1010;
}

.banner img {
  width: 100%;
  height: clamp(16rem, 48vw, 38rem);
  object-fit: cover;
  object-position: center 52%;
}

.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem var(--gutter);
  border-bottom: 1px solid var(--gold-line);
  position: sticky;
  top: 0;
  background: color-mix(in srgb, var(--paper) 90%, white);
  z-index: 8;
}

.wordmark {
  text-decoration: none;
}

.wordmark:hover {
  color: inherit;
}

.seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 7.4rem;
  padding: 0.35rem 0.9rem 0.45rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  line-height: 1;
}

.seal strong {
  font-family: var(--script);
  font-weight: 400;
  font-size: 1.55rem;
}

.seal span {
  font-family: var(--serif);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.12rem;
}

.masthead nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  font-size: 0.92rem;
}

.masthead nav a {
  text-decoration: none;
}

.masthead .tel {
  font-variant-numeric: tabular-nums;
  text-decoration: none;
  white-space: nowrap;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: min(72vh, 34rem);
  border-bottom: 1px solid var(--gold-line);
}

.hero figure {
  margin: 0;
  min-height: 0;
  overflow: hidden;
  background: #d8cbb8;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.8rem, 4vw, 3.2rem);
  background: var(--cream);
}

.kicker {
  margin: 0 0 0.7rem;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.3rem, 4.8vw, 3.7rem);
  line-height: 1;
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
}

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

.hero-meta {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gold-line);
  font-size: 0.86rem;
  color: var(--ink-soft);
}

.hero-meta a {
  text-decoration: none;
}

.wrap {
  width: min(var(--measure), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

.section {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  border-bottom: 1px solid var(--gold-line);
  scroll-margin-top: 5.5rem;
}

.section-head {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 0.75rem 1.25rem;
  margin-bottom: 2rem;
  align-items: end;
}

.num {
  font-family: var(--serif);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  padding-bottom: 0.2rem;
}

.section h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.1;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3.5rem;
}

.prose p {
  margin: 0 0 1rem;
  max-width: 42ch;
}

.prose p:last-child {
  margin-bottom: 0;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.72rem 0;
  border-bottom: 1px solid var(--gold-line);
  font-size: 1.02rem;
}

.menu li:first-child {
  border-top: 1px solid var(--gold-line);
}

.menu small {
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.vitrine {
  margin: 2.4rem 0 0;
}

.vitrine img {
  width: 100%;
  aspect-ratio: 3 / 2;
  max-height: 36rem;
  object-fit: cover;
  object-position: center 92%;
}

.caption {
  margin: 0.7rem 0 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.mosaic figure {
  margin: 0;
}

.mosaic img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
}

.mosaic .wide img {
  object-position: center 72%;
}

.mosaic .tall img {
  object-position: center 65%;
}

.order {
  background: var(--espresso);
  color: var(--cream);
  border-bottom: none;
}

.order .num,
.order .lede,
.order a {
  color: color-mix(in srgb, var(--cream) 72%, var(--gold));
}

.order a:hover {
  color: var(--gold);
}

.order h2 {
  max-width: 18ch;
}

.phone {
  display: inline-block;
  margin-top: 1.6rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.3rem);
  letter-spacing: -0.02em;
  text-decoration: none;
  line-height: 1;
  color: var(--cream);
}

.phone:hover {
  color: var(--gold);
}

.place {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1.8rem 2.2rem;
  align-items: start;
}

.map {
  border: 1px solid var(--gold);
  background: var(--paper-deep);
  min-height: 22rem;
}

.map iframe {
  display: block;
  width: 100%;
  height: 22rem;
  border: 0;
  filter: saturate(0.85) contrast(0.96);
}

.facts {
  display: grid;
  gap: 1.4rem;
}

.facts h3 {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.facts p,
.facts a {
  margin: 0;
  text-decoration: none;
}

.facts .big {
  font-family: var(--serif);
  font-size: 1.45rem;
  margin-bottom: 0.25rem;
}

.hours {
  list-style: none;
  margin: 0.15rem 0 0;
  padding: 0;
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.32rem 0;
  border-bottom: 1px solid var(--gold-line);
  font-variant-numeric: tabular-nums;
}

.hours li:first-child {
  border-top: 1px solid var(--gold-line);
}

.hours .is-today {
  color: var(--ink);
  font-weight: 600;
}

.hours time {
  font-family: var(--serif);
  font-size: 1.05rem;
}

.foot {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem var(--gutter) 1.6rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

@media (max-width: 860px) {
  .masthead {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    position: static;
  }

  .masthead nav {
    grid-column: 1 / -1;
  }

  .masthead .tel {
    justify-self: end;
  }

  .hero,
  .split,
  .place,
  .mosaic {
    grid-template-columns: 1fr;
  }

  .banner img {
    height: clamp(12rem, 58vw, 20rem);
  }

  .hero {
    min-height: 0;
  }

  .hero img {
    aspect-ratio: 4 / 5;
    max-height: 26rem;
  }

  .section-head {
    grid-template-columns: 3rem 1fr;
  }

  .vitrine img {
    aspect-ratio: 4 / 5;
    max-height: 28rem;
  }

  .map,
  .map iframe {
    min-height: 18rem;
    height: 18rem;
  }
}

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