@font-face {
  font-family: Fraunces;
  src: url("media/fonts/fraunces.woff2") format("woff2");
  font-weight: 400 600;
  font-display: swap;
}
@font-face {
  font-family: Outfit;
  src: url("media/fonts/outfit.woff2") format("woff2");
  font-weight: 400 600;
  font-display: swap;
}

:root {
  --ink: #1a1210;
  --cream: #f4eee6;
  --paper: #fbf6f0;
  --wine: #6f1d2c;
  --gold: #c4a574;
  --sand: #d9cbb8;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Outfit, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: var(--wine); }
::selection { background: var(--wine); color: var(--cream); }
:focus-visible { outline: 2px solid var(--wine); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

.skip { position: absolute; left: -999px; }
.skip:focus { left: 1rem; top: 1rem; z-index: 20; background: #fff; padding: .5rem 1rem; }

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 5vw;
  z-index: 4;
}
header .brand {
  font-family: Fraunces, Georgia, serif;
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: -.02em;
  color: inherit;
  text-decoration: none;
}
header nav { display: flex; gap: 1.75rem; }
header nav a {
  color: inherit;
  text-decoration: none;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .68rem;
}
header nav a[aria-current="page"] { text-decoration: underline; text-underline-offset: .35em; }
.hero-header { position: absolute; inset: 0 0 auto 0; color: #fff; }
.solid-header { position: relative; background: var(--ink); color: var(--cream); }

.hero { position: relative; min-height: 100vh; color: #fff; }
.hero img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  filter: saturate(.88) contrast(1.05);
}
.hero .veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,10,10,.28) 0%, rgba(18,10,10,.12) 32%, rgba(18,10,10,.72) 100%);
}
.hero .copy {
  position: absolute;
  left: 5vw;
  right: 5vw;
  bottom: 10vh;
  max-width: 38rem;
}
.kicker {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}
.hero h1, .page-intro h1, .desk h1, .profile h2 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: .95;
}
.hero h1 { font-size: clamp(2.6rem, 7vw, 5.2rem); margin: 0 0 1.1rem; }
.hero p { max-width: 42ch; font-size: 1.02rem; color: #f3e8dc; }

.cta {
  display: inline-block;
  margin-top: 1.5rem;
  padding: .95rem 1.45rem;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .68rem;
}
.cta-dark { background: var(--wine); color: #fff; }
.cta:hover, .cta-dark:hover, button:hover { filter: brightness(1.08); }

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ink);
  color: var(--cream);
}
.process article {
  padding: 2rem 1.5rem 2.2rem;
  border-right: 1px solid rgba(196,165,116,.25);
}
.process article:last-child { border-right: 0; }
.process span {
  display: block;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.process h2 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 500;
  font-size: 1.35rem;
  margin: 0 0 .4rem;
}
.process p { margin: 0; font-size: .92rem; color: var(--sand); }

.profile {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem 2.5rem;
  padding: 4.8rem 5vw 4.4rem;
  background: var(--cream);
  border-top: 1px solid rgba(26,18,16,.08);
}
.profile article h2 {
  font-size: 1.55rem;
  margin: 0 0 .7rem;
  letter-spacing: -.02em;
  max-width: 16ch;
}
.profile .meta {
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .68rem;
  color: var(--wine);
  margin: 0 0 .55rem;
}
.profile p { margin: 0; max-width: 34ch; }

.tease, .plates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 1.6rem;
  padding: 0 5vw 5rem;
  max-width: 92rem;
  margin: 0 auto;
}
.tease { padding-top: 4.2rem; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.tease figure, .plates article { margin: 0; }
.tease img, .plates img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  margin-bottom: 1rem;
}
.tease figcaption, .plates .num {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--wine);
}
.tease figcaption {
  display: flex;
  justify-content: space-between;
  color: var(--ink);
}
.plates .num { margin: 0 0 .35rem; }
.plates h2 {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: -.02em;
  margin: 0 0 .4rem;
}
.plates p { margin: 0; max-width: 34ch; color: #3f372f; }

.page-intro { padding: 3.2rem 5vw 1.8rem; max-width: 40rem; }
.page-intro h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); margin: 0 0 .85rem; }
.page-intro p { font-size: 1.08rem; max-width: 42ch; margin: 0; }

.policy { padding: 0 5vw 4.6rem; max-width: 42rem; }
.policy h2 {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -.02em;
  margin: 2.2rem 0 .7rem;
}
.policy p, .policy li { max-width: 62ch; }
.policy ul { padding-left: 1.15rem; }
.policy address { font-style: normal; line-height: 1.6; }

.desk {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 4rem;
  padding: 4rem 5vw 4.6rem;
  background: var(--cream);
  align-items: start;
}
.desk h1 { font-size: clamp(2.3rem, 5vw, 3.5rem); margin: 0 0 1rem; max-width: 12ch; }
.facts { margin: 1.4rem 0 1.5rem; padding: 0; }
.facts > div {
  display: grid;
  grid-template-columns: 6.2rem 1fr;
  gap: 1rem;
  padding: .9rem 0;
  border-top: 1px solid rgba(26,18,16,.12);
}
.facts dt {
  margin: 0;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--wine);
}
.facts dd { margin: 0; }
.quiet { font-size: .92rem; color: #5c534b; max-width: 40ch; margin: 0; }
.desk form {
  background: var(--paper);
  padding: 1.9rem 1.9rem 2.1rem;
  border: 1px solid rgba(26,18,16,.08);
}
label {
  display: block;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 1rem 0 .3rem;
}
input, select, textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  padding: .55rem 0;
  font: inherit;
  color: inherit;
}
textarea { min-height: 5rem; resize: vertical; }
button {
  margin-top: 1.4rem;
  border: 0;
  background: var(--wine);
  color: #fff;
  padding: .95rem 1.5rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .68rem;
}
.band-cta { padding: 0 5vw 5rem; }
.band-cta p { max-width: 38ch; margin: 0 0 .2rem; }
.error-summary, .destructive-note, [data-loading] { display: none; }
body[data-state="error"] .error-summary { display: block; color: var(--wine); }
body[data-state="destructive"] .destructive-note { display: block; }
body[data-state="loading"] button { opacity: .45; pointer-events: none; }
body[data-state="loading"] [data-loading] { display: block; }

footer { background: #140e0c; color: var(--sand); }
.foot-wordmark {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(4.2rem, 14vw, 12rem);
  line-height: .8;
  letter-spacing: -.05em;
  color: var(--cream);
  padding: 2.2rem 5vw .4rem;
  margin: 0;
  font-weight: 500;
}
.foot-rule { height: 1px; background: var(--gold); margin: 0 5vw 2rem; opacity: .7; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2rem;
  padding: 0 5vw 1.8rem;
}
footer h2 {
  color: var(--gold);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 .8rem;
}
footer a { color: var(--cream); }
.legal {
  margin: 0;
  padding: 1.1rem 5vw 2rem;
  border-top: 1px solid rgba(196,165,116,.2);
  font-size: .78rem;
}

@media (max-width: 52rem) {
  .process, .profile, .plates, .tease, .desk, .foot-grid { grid-template-columns: 1fr; }
  .process article { border-right: 0; border-bottom: 1px solid rgba(196,165,116,.25); }
  .hero { min-height: 92vh; }
  .hero img { height: 92vh; }
  .facts > div { grid-template-columns: 1fr; gap: .25rem; }
}
