:root {
  --cream:       #faf6ef;
  --linen:       #f2ebe0;
  --white:       #ffffff;
  --char:        #1f1a19;
  --ink:         #2a2320;
  --body:        #4a413c;
  --mute:        #6e625c;
  --burgundy:    #6f1f2e;
  --burgundy-dk: #591825;
  --terra:       #a04a24;
  --amber:       #855c0d;
  --rule:        #e6dccd;
  --field:       #8a8479;
  --on-dark:     #faf6ef;
  --mute-dark:   #cfc4bb;
  --gold:        #c9a227;
  --mute-burg:   #e8c9c0;

  --display: Constantia, "Hoefler Text", Baskerville, "Palatino Linotype",
             Palatino, Georgia, "Times New Roman", serif;
  --sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;
  --wrap: 1120px;
  --gap: clamp(58px, 7.5vw, 104px);
}

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

html { -webkit-text-size-adjust: 100%; background: var(--cream); scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--body);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.14;
  letter-spacing: -0.014em;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.2rem, 4.8vw, 3.55rem); }
h2 { font-size: clamp(1.65rem, 3vw, 2.4rem); }
h3 { font-family: var(--sans); font-weight: 650; font-size: 1.02rem; letter-spacing: -0.012em; line-height: 1.4; }
h4 { font-family: var(--sans); font-weight: 650; font-size: .93rem; margin: 0 0 .6em; color: var(--ink); }

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }
img { max-width: 100%; display: block; }
figure { margin: 0; }

a { color: var(--burgundy); text-underline-offset: 3px; }
a:hover { color: var(--ink); }
a[href^="mailto:"], a[href^="tel:"], a[href^="http"] { overflow-wrap: anywhere; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 26px; }
.wrap--slim { max-width: 720px; }

.sec { padding-top: var(--gap); padding-bottom: var(--gap); }
.sec--linen { background: var(--linen); }
.sec--char { background: var(--char); color: var(--mute-dark); }
.sec--burg { background: var(--burgundy); color: var(--mute-burg); }
.sec--tight { padding-top: clamp(40px, 5vw, 62px); padding-bottom: clamp(40px, 5vw, 62px); }

.pagetop { padding-top: clamp(40px, 5vw, 62px); padding-bottom: clamp(10px, 1.5vw, 18px); }

.sec--char h1, .sec--char h2, .sec--char h3, .sec--char h4, .sec--char strong { color: var(--on-dark); }
.sec--burg h2, .sec--burg h3, .sec--burg h4, .sec--burg strong { color: #fff; }
.sec--char a:not(.btn) { color: var(--gold); }
.sec--burg a:not(.btn) { color: #fff; }

.kicker {
  display: block;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.2em;
}
.sec--char .kicker { color: var(--gold); }
.sec--burg .kicker { color: var(--mute-burg); }

.lede { font-family: var(--display); font-size: clamp(1.15rem, 1.9vw, 1.4rem); line-height: 1.5; color: var(--body); max-width: 40ch; }
.sec--char .lede { color: var(--mute-dark); }
.sec--burg .lede { color: var(--mute-burg); }
.muted { color: var(--mute); font-size: .93rem; }
.sec--char .muted { color: var(--mute-dark); }
.sec--burg .muted { color: var(--mute-burg); }
.intro { max-width: 56ch; margin-bottom: clamp(30px, 4vw, 50px); }
.intro h2 { margin-bottom: .3em; }
.intro p { color: var(--mute); margin: 0; }
.sec--char .intro p { color: var(--mute-dark); }
.sec--burg .intro p { color: var(--mute-burg); }
.spaced { margin-top: 1.8em; }

.demobar {
  background: var(--char);
  color: rgba(255,255,255,.84);
  font-size: .81rem;
  line-height: 1.5;
  text-align: center;
  padding: 9px 22px;
}
.demobar a { color: var(--gold); }
.demobar a:hover { color: #fff; }

.header { background: rgba(250,246,239,.97); border-bottom: 1px solid var(--rule); position: sticky; top: 0; z-index: 40; }
.header__inner { display: flex; align-items: center; flex-wrap: wrap; gap: 10px 24px; padding-top: 15px; padding-bottom: 15px; position: relative; }

.brand { display: inline-flex; flex-direction: column; text-decoration: none; color: var(--ink); margin-right: auto; min-width: 0; }
.brand b { font-family: var(--display); font-weight: 400; font-size: 1.42rem; line-height: 1.02; letter-spacing: -0.01em; }
.brand span {
  font-family: var(--sans); font-size: .6rem; font-weight: 700; letter-spacing: .24em;
  text-transform: uppercase; color: var(--terra); margin-top: 6px;
}

.nav { display: flex; gap: 2px; }
.nav a {
  font-size: .93rem; color: var(--body); text-decoration: none;
  padding: 12px 13px; border-radius: 3px; font-weight: 500;
}
.nav a:hover { color: var(--ink); background: var(--linen); }
.nav a[aria-current="page"] { color: var(--ink); font-weight: 700; background: var(--linen); }

.header__phone {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .93rem; font-weight: 650; color: var(--ink);
  text-decoration: none; white-space: nowrap; padding: 12px 4px;
}
.header__phone svg { width: 15px; height: 15px; color: var(--terra); flex: none; }
.header__phone:hover { color: var(--burgundy); }

.mobmenu { display: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  background: var(--burgundy); color: #fff;
  font-family: var(--sans); font-size: .95rem; font-weight: 650;
  text-decoration: none; padding: 14px 26px;
  border: 1px solid var(--burgundy); border-radius: 2px; cursor: pointer;
  transition: background .16s ease, border-color .16s ease, color .16s ease;
}
.btn:hover { background: var(--burgundy-dk); border-color: var(--burgundy-dk); color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--rule); }
.btn--ghost:hover { background: var(--linen); border-color: #d8ccb8; color: var(--ink); }
.btn--light { background: var(--cream); border-color: var(--cream); color: var(--burgundy); }
.btn--light:hover { background: #fff; border-color: #fff; color: var(--burgundy-dk); }
.btn--clear { background: transparent; border-color: rgba(255,255,255,.44); color: #fff; }
.btn--clear:hover { background: rgba(255,255,255,.13); color: #fff; }

.header .btn .sm { display: none; }

.row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 20px; margin-top: 2em; }
.row .muted a { color: inherit; font-weight: 700; text-decoration: none; }

.tlink {
  display: inline-flex; align-items: center; gap: .5em; min-height: 44px;
  font-family: var(--sans); font-weight: 650; font-size: .95rem;
  color: var(--burgundy); text-decoration: none; flex-wrap: wrap; min-width: 0;
}
.tlink:hover { text-decoration: underline; }
.tlink svg { width: 15px; height: 15px; flex: none; }
.sec--char .tlink { color: var(--gold); }

.hero { position: relative; background: var(--char); overflow: hidden; }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(24,18,17,.92) 0%, rgba(24,18,17,.78) 42%, rgba(24,18,17,.30) 78%, rgba(24,18,17,.20) 100%),
    linear-gradient(to top, rgba(24,18,17,.62) 0%, rgba(24,18,17,0) 55%);
}
.hero .wrap { position: relative; z-index: 2; padding-top: clamp(52px, 6.5vw, 88px); padding-bottom: clamp(52px, 6.5vw, 88px); }
.hero__inner { max-width: 34rem; }
.hero h1 { color: #fff; margin-bottom: .3em; }
.hero .lede { color: #f0e6dc; max-width: 41ch; }
.hero .kicker { color: var(--gold); }

.facts {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--rule); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  list-style: none; margin: 0; padding: 0;
}
.facts li { background: var(--cream); padding: 26px 24px; min-width: 0; }
.facts b { display: block; font-family: var(--display); font-size: 1.6rem; color: var(--ink); line-height: 1.1; font-weight: 400; }
.facts span { display: block; font-size: .88rem; color: var(--mute); margin-top: 7px; }
@media (max-width: 780px) { .facts { grid-template-columns: 1fr; } .facts li { padding: 20px 22px; } }

.duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.duo > * { min-width: 0; }
.duo--flip .duo__media { order: 2; }
.duo--top { align-items: start; }
.duo--top > :nth-child(2) { padding-top: clamp(24px, 4.5vw, 60px); }
@media (max-width: 860px) {
  .duo { grid-template-columns: 1fr; }
  .duo--flip .duo__media { order: 0; }
  .duo--top > :nth-child(2) { padding-top: 0; }
}

.fig img { width: 100%; object-fit: cover; border-radius: 2px; }
.fig--tall img { aspect-ratio: 4 / 5; }
.fig--card img { aspect-ratio: 4 / 3; }
.fig--wide img { aspect-ratio: 16 / 9; }
.fig--band img { aspect-ratio: 21 / 9; }
.fig figcaption { font-size: .85rem; color: var(--mute); margin-top: 11px; font-style: italic; }

.card {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: clamp(30px, 5vw, 58px) clamp(22px, 4vw, 54px);
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}
.card::before {
  content: "";
  position: absolute; inset: 9px;
  border: 1px solid var(--rule);
  pointer-events: none;
}
.card > * { position: relative; }
.card__top { text-align: center; margin-bottom: clamp(26px, 4vw, 40px); }
.card__top h2 { margin-bottom: .25em; }
.card__top p { color: var(--mute); font-size: .95rem; margin: 0; }

.course { text-align: center; margin-bottom: clamp(28px, 4vw, 42px); }
.course:last-child { margin-bottom: 0; }
.course > h3 {
  font-family: var(--sans); font-size: .72rem; font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase; color: var(--terra);
  margin: 0 0 1.5em;
  display: flex; align-items: center; gap: 16px; justify-content: center;
}
.course > h3::before, .course > h3::after {
  content: ""; height: 1px; background: var(--rule); flex: 1 1 auto; max-width: 84px;
}
.course ul { list-style: none; margin: 0; padding: 0; }
.course li { margin-bottom: 1.25em; }
.course li:last-child { margin-bottom: 0; }
.course .dish { display: block; font-family: var(--display); font-size: 1.12rem; color: var(--ink); line-height: 1.3; }
.course .note { display: block; font-size: .91rem; color: var(--mute); font-style: italic; margin-top: .3em; max-width: 46ch; margin-left: auto; margin-right: auto; }

.pick {
  margin-top: clamp(26px, 4vw, 40px); padding-top: 22px;
  border-top: 1px solid var(--rule); text-align: center;
  font-size: .93rem; color: var(--mute);
}
.pick strong { color: var(--ink); }

.evts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; list-style: none; margin: 0; padding: 0; }
.evts > li { min-width: 0; background: var(--white); border: 1px solid var(--rule); padding: 30px 28px 32px; display: flex; flex-direction: column; }
.evts h3 { font-family: var(--display); font-weight: 400; font-size: 1.4rem; letter-spacing: -0.012em; margin-bottom: .35em; }
.evts .from { display: block; font-family: var(--sans); font-size: .78rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--terra); margin-bottom: 1em; }
.evts p { font-size: .95rem; }
.evts .tlink { margin-top: auto; padding-top: .6em; }
@media (max-width: 760px) { .evts { grid-template-columns: 1fr; } }

.tscroll { overflow-x: auto; }
.tbl { width: 100%; border-collapse: collapse; font-size: .97rem; }
.tbl caption {
  text-align: left; font-family: var(--sans); font-size: .7rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--terra); padding-bottom: 14px;
}
.tbl th, .tbl td { text-align: left; padding: 15px 15px 15px 0; border-bottom: 1px solid var(--rule); vertical-align: top; }
.tbl thead th { font-family: var(--sans); font-size: .74rem; font-weight: 700; color: var(--mute); letter-spacing: .07em; text-transform: uppercase; }
.tbl tbody th { font-weight: 650; color: var(--ink); }
.tbl td.n { font-weight: 700; color: var(--ink); white-space: nowrap; text-align: right; padding-right: 0; font-variant-numeric: tabular-nums; }
.tbl .sub { display: block; font-size: .88rem; color: var(--mute); font-weight: 400; font-style: italic; }
.tbl tfoot th, .tbl tfoot td { border-bottom: 0; border-top: 2px solid var(--ink); padding-top: 16px; font-weight: 700; color: var(--ink); }
.tbl + .tbl { margin-top: clamp(34px, 5vw, 54px); }

.notes { list-style: none; margin: 1.4em 0 0; padding: 0; }
.notes li { display: flex; gap: 14px; padding: 15px 0; border-top: 1px solid var(--rule); min-width: 0; }
.notes li:last-child { border-bottom: 1px solid var(--rule); }
.notes .mk { flex: none; font-family: var(--display); font-size: 1rem; color: var(--terra); line-height: 1.5; }
.notes strong { display: block; color: var(--ink); font-size: .99rem; font-weight: 650; }
.notes span { font-size: .93rem; color: var(--mute); }
.sec--char .notes li { border-color: rgba(255,255,255,.16); }
.sec--char .notes span { color: var(--mute-dark); }
.sec--char .notes .mk { color: var(--gold); }

.steps { list-style: none; margin: 0; padding: 0; counter-reset: s; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.steps > li { counter-increment: s; min-width: 0; padding-top: 22px; border-top: 2px solid var(--terra); }
.steps > li::before {
  content: "0" counter(s); display: block; font-family: var(--display);
  font-size: 1.05rem; color: var(--terra); margin-bottom: .5em;
}
.steps h3 { margin-bottom: .35em; }
.steps p { font-size: .93rem; color: var(--mute); margin: 0; }
.sec--char .steps > li { border-top-color: var(--gold); }
.sec--char .steps > li::before { color: var(--gold); }
.sec--char .steps p { color: var(--mute-dark); }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; gap: 30px 26px; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

.two { columns: 2; column-gap: 40px; list-style: none; margin: 0; padding: 0; }
.two li { break-inside: avoid; display: flex; gap: 11px; padding: 7px 0; font-size: .96rem; }
.two .mk { flex: none; color: var(--terra); font-family: var(--display); }
@media (max-width: 620px) { .two { columns: 1; } }

.statement { max-width: 34ch; }
.statement p { font-family: var(--display); font-size: clamp(1.3rem, 2.4vw, 1.9rem); line-height: 1.32; color: var(--ink); }
.sec--char .statement p, .sec--burg .statement p { color: var(--on-dark); }

.qa { max-width: 760px; border-top: 1px solid var(--rule); }
.qa details { border-bottom: 1px solid var(--rule); }
.qa summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 20px; padding: 18px 0;
  font-family: var(--display); font-size: 1.1rem; color: var(--ink); min-width: 0;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::marker { content: ""; }
.qa summary::after {
  content: ""; flex: none; width: 9px; height: 9px;
  border-right: 2px solid var(--terra); border-bottom: 2px solid var(--terra);
  transform: translateY(-3px) rotate(45deg); transition: transform .16s ease;
}
.qa details[open] summary::after { transform: translateY(2px) rotate(-135deg); }
.qa .ans { padding: 0 0 22px; font-size: .96rem; }
.qa .ans p { max-width: 66ch; }

.callout {
  background: var(--white); border: 1px solid var(--rule);
  border-left: 3px solid var(--terra); padding: 22px 24px; max-width: 640px;
}
.callout p { font-size: .95rem; }
.callout--lead { margin-bottom: clamp(34px, 5vw, 58px); }
.sec--char .callout { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.18); border-left-color: var(--gold); }
.sec--char .callout p { color: var(--mute-dark); }

.form { max-width: 560px; }
.f { margin-bottom: 18px; }
.f label { display: block; margin-bottom: 6px; font-size: .89rem; font-weight: 650; color: var(--ink); }
.f input, .f select, .f textarea {
  width: 100%; padding: 13px 14px; background: var(--white);
  border: 1px solid var(--field); border-radius: 2px;
  font-family: inherit; font-size: 1rem; color: var(--ink); line-height: 1.5;
}
.f textarea { min-height: 130px; resize: vertical; }
.f input:focus-visible, .f select:focus-visible, .f textarea:focus-visible {
  outline: 2px solid var(--burgundy); outline-offset: 1px; border-color: var(--burgundy);
}
.f .tip { display: block; margin-top: 6px; font-size: .86rem; color: var(--mute); }

.ways { list-style: none; margin: 0; padding: 0; }
.ways li { border-top: 1px solid var(--rule); }
.ways li:last-child { border-bottom: 1px solid var(--rule); }
.ways a, .ways .line { display: flex; align-items: baseline; gap: 16px; padding: 18px 2px; text-decoration: none; color: var(--ink); min-width: 0; }
.ways a:hover .v { color: var(--burgundy); }
.k { flex: none; width: 78px; font-size: .78rem; color: var(--mute); }
.v { font-size: 1.02rem; font-weight: 650; overflow-wrap: anywhere; min-width: 0; }

.foot { background: var(--char); color: var(--mute-dark); padding-top: clamp(44px, 5vw, 62px); padding-bottom: 28px; font-size: .92rem; }
.foot a { color: var(--on-dark); text-decoration: none; }
.foot a:hover { color: var(--gold); text-decoration: underline; }
.foot__top { display: flex; flex-wrap: wrap; gap: 26px 52px; align-items: flex-start; padding-bottom: 30px; }
.foot__top > * { min-width: 0; }
.foot__brand { flex: 1 1 280px; }
.foot__brand b { font-family: var(--display); font-weight: 400; color: #fff; font-size: 1.32rem; }
.foot__brand p { max-width: 36ch; margin-top: .7em; }
.foot ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0 26px; }

.foot li a, .foot p a { display: inline-block; padding: 12px 0; }
.foot__bar {
  border-top: 1px solid rgba(255,255,255,.15); padding-top: 20px; font-size: .84rem;
  display: flex; flex-wrap: wrap; gap: 6px 20px; justify-content: space-between;
}
.foot__bar p { margin: 0; }

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--burgundy); outline-offset: 3px; border-radius: 2px;
}
.hero a:focus-visible, .foot a:focus-visible, .sec--char a:focus-visible, .sec--burg a:focus-visible { outline-color: var(--gold); }

.skip { position: absolute; left: -9999px; top: 0; background: var(--char); color: #fff; padding: 12px 18px; z-index: 90; }
.skip:focus { left: 0; color: #fff; }

@media (max-width: 1080px) {
  .nav { display: none; }
  .mobmenu { display: block; }
  .mobmenu > summary {
    list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 14px; border-radius: 2px; background: var(--white);
    border: 1px solid var(--rule); color: var(--ink); font-size: .92rem; font-weight: 650; white-space: nowrap;
  }
  .mobmenu > summary::-webkit-details-marker { display: none; }
  .mobmenu > summary::marker { content: ""; }
  .mobmenu > summary svg { width: 17px; height: 17px; }
  .mobmenu[open] > summary { background: var(--linen); border-color: var(--burgundy); }
  .mobmenu > ul {
    position: absolute; right: 26px; top: calc(100% + 10px); z-index: 60;
    min-width: 234px; max-width: calc(100% - 52px); margin: 0; padding: 7px;
    list-style: none; background: var(--white); border: 1px solid var(--rule);
    box-shadow: 0 6px 14px rgba(31,26,25,.09), 0 24px 46px rgba(31,26,25,.17);
  }
  .mobmenu > ul a { display: block; padding: 12px 13px; font-size: .95rem; color: var(--body); text-decoration: none; }
  .mobmenu > ul a:hover { background: var(--linen); color: var(--ink); }
  .mobmenu > ul a[aria-current="page"] { background: var(--linen); color: var(--ink); font-weight: 700; }
  .mobmenu .menu-call {
    display: flex; align-items: center; gap: 9px;
    margin-top: 5px; padding-top: 14px;
    border-top: 1px solid var(--rule);
    color: var(--burgundy); font-weight: 700;
  }
  .mobmenu .menu-call svg { width: 15px; height: 15px; color: var(--terra); flex: none; }
}

@media (max-width: 720px) { .header__phone { display: none; } }

@media (max-width: 560px) {
  .brand span { display: none; }
  .brand b { font-size: 1.14rem; }
  .card::before { inset: 6px; }
}

@media (max-width: 430px) {
  .mobmenu > summary { padding: 12px; gap: 0; }
  .mobmenu > summary .lbl { display: none; }
  .head .wrap { gap: 8px 10px; }
  .header .btn { padding: 12px 15px; font-size: .87rem; }
  .header .btn .lg { display: none; }
  .header .btn .sm { display: inline; }
  .brand b { font-size: 1.08rem; }
  .row .btn { width: 100%; }
  .k { width: 66px; }
  .mobmenu > ul { min-width: 216px; }
}

.foot h4 { color: #fff; }

.sec--char .notes strong { color: var(--on-dark); }

.sec--char .tbl caption { color: var(--gold); }
.sec--char .tbl thead th { color: var(--mute-dark); }
.sec--char .tbl tbody th { color: var(--on-dark); }
.sec--char .tbl td { color: var(--mute-dark); }
.sec--char .tbl td.n { color: var(--on-dark); }
.sec--char .tbl .sub { color: var(--mute-dark); }
.sec--char .tbl th,
.sec--char .tbl td { border-bottom-color: rgba(255,255,255,.17); }
.sec--char .tbl tfoot th,
.sec--char .tbl tfoot td { color: var(--on-dark); border-top-color: var(--gold); }

.header .btn,
.mobmenu > summary {
  min-height: 52px;
  padding-top: 0;
  padding-bottom: 0;
}

@media (max-width: 430px) {
  .header .btn,
  .mobmenu > summary {
    min-height: 46px;
    padding-top: 0;
    padding-bottom: 0;
  }
}
