@font-face {
  font-family: "Gambetta";
  src: url(fonts/gambetta-var-normal.woff2) format("woff2-variations"), url(fonts/gambetta-var-normal.woff2) format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gambetta";
  src: url(fonts/gambetta-var-italic.woff2) format("woff2-variations"), url(fonts/gambetta-var-italic.woff2) format("woff2");
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Supreme";
  src: url(fonts/supreme-var-normal.woff2) format("woff2-variations"), url(fonts/supreme-var-normal.woff2) format("woff2");
  font-weight: 100 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Supreme";
  src: url(fonts/supreme-var-italic.woff2) format("woff2-variations"), url(fonts/supreme-var-italic.woff2) format("woff2");
  font-weight: 100 800;
  font-style: italic;
  font-display: swap;
}
:root {
  --ivory:#F1E9D7;
  --ivory-2:#E8DFC9;
  --espresso:#1B1310;
  --espresso-2:#241B18;
  --gold:#A6803E;
  --gold-lt:#C9A578;
  --cognac:#7A4A2A;
  --ash:#6B615A;
  --gold-ink:#7A5D2B;
  --seam:#E7E1DB;
  --font-display:"Gambetta","Iowan Old Style","Palatino Linotype",Palatino,Georgia,serif;
  --font-body:"Supreme",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  --t-d1: clamp(2.85rem, 6.6vw, 5.2rem);
  --t-d2: clamp(2.05rem, 4.6vw, 3.4rem);
  --t-d3: clamp(1.5rem, 2.4vw, 1.85rem);
  --t-d4: 1.32rem;
  --t-lede: clamp(1.02rem, 1.5vw, 1.16rem);
  --t-body: 1rem;
  --t-small: .875rem;
  --t-micro: .78rem;
  --t-label: .6875rem;
  --tr-d1: -.032em;
  --tr-d2: -.026em;
  --tr-d3: -.019em;
  --tr-d4: -.014em;
  --tr-lede: -.008em;
  --tr-body: -.003em;
  --tr-small: 0;
  --tr-micro: .004em;
  --lh-tight: .98;
  --lh-display: 1.1;
  --lh-snug: 1.3;
  --lh-lede: 1.55;
  --lh-body: 1.65;
  --lh-micro: 1.45;
  --track-display:-.022em;
  --track-label:.17em;
  --track-control:.13em;
  --ease-out:cubic-bezier(.22,.61,.36,1);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: auto;
}
body {
  background: var(--espresso);
  color: var(--ivory);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection {
  background: var(--gold);
  color: var(--espresso);
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1.1rem, 2.4vw, 1.8rem) clamp(1.3rem, 4vw, 3.2rem);
  color: #fff;
  mix-blend-mode: normal;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 260%;
  z-index: -1;
  background:
    linear-gradient(
      to bottom,
      rgba(8, 4, 2, .72),
      rgba(8, 4, 2, .34) 46%,
      rgba(8, 4, 2, 0));
  pointer-events: none;
}
.brand-word {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  letter-spacing: -.01em;
  color: #fff;
  text-shadow: 0 1px 20px rgba(0, 0, 0, .5);
  text-decoration: none;
}
.brand-word .dot {
  color: var(--gold);
}
.header-right {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}
.header-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.4vw, 2.1rem);
}
.header-nav a {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .92);
  text-decoration: none;
  text-shadow: 0 1px 3px rgba(8, 4, 2, .9), 0 1px 14px rgba(0, 0, 0, .5);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color .3s var(--ease-out), border-color .3s;
}
.header-nav a:hover {
  color: #fff;
}
.header-nav a[aria-current=page] {
  color: #fff;
  border-bottom-color: var(--gold);
}
.header-cta {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  padding: .62rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 0;
  text-shadow: 0 1px 14px rgba(0, 0, 0, .5);
  transition:
    background .3s var(--ease-out),
    color .3s var(--ease-out),
    border-color .3s;
}
.header-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--espresso);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-right: -8px;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  z-index: 95;
}
.nav-toggle i {
  display: block;
  width: 22px;
  height: 1px;
  background: #fff;
  transition: transform .35s var(--ease-out), opacity .3s;
}
.nav-toggle[aria-expanded=true] i:first-child {
  transform: translateY(4px) rotate(45deg);
}
.nav-toggle[aria-expanded=true] i:last-child {
  transform: translateY(-4px) rotate(-45deg);
}
@media (max-width: 880px) {
  .header-nav {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
}
@media (max-width: 640px) {
  .header-loc {
    display: none;
  }
}
.header-loc {
  font-size: var(--t-label);
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
  text-shadow: 0 1px 14px rgba(0, 0, 0, .5);
}
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--espresso);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(1.6rem, 8vw, 4rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s var(--ease-out), visibility .45s;
}
.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}
.nav-overlay a {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -.015em;
  font-size: clamp(1.9rem, 8.5vw, 3rem);
  line-height: 1.1;
  color: var(--ivory);
  text-decoration: none;
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(241, 233, 215, .12);
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity .5s var(--ease-out),
    transform .5s var(--ease-out),
    color .3s;
}
.nav-overlay.open a {
  opacity: 1;
  transform: none;
}
.nav-overlay.open a:nth-child(2) {
  transition-delay: .05s;
}
.nav-overlay.open a:nth-child(3) {
  transition-delay: .1s;
}
.nav-overlay.open a:nth-child(4) {
  transition-delay: .15s;
}
.nav-overlay.open a:nth-child(5) {
  transition-delay: .2s;
}
.nav-overlay a:hover {
  color: var(--gold-lt);
}
.nav-overlay a .dot {
  color: var(--gold);
}
.nav-overlay a.overlay-book {
  color: var(--gold-lt);
}
.nav-overlay a.overlay-call {
  color: var(--gold-lt);
}
.nav-overlay .overlay-meta {
  margin-top: 2.2rem;
  font-size: var(--t-label);
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--ash);
}
.nav-overlay.open a:nth-child(6) {
  transition-delay: .25s;
}
.film-cta {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.05rem 2rem;
  border-radius: 0;
  transition:
    transform .3s var(--ease-out),
    box-shadow .3s,
    background .3s;
}
.film-cta.primary {
  background: var(--espresso);
  color: var(--ivory);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(10, 5, 2, .34);
  transition:
    transform .3s var(--ease-out),
    box-shadow .3s,
    color .35s var(--ease-out);
}
.film-cta.primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform .4s var(--ease-out);
}
.film-cta.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(10, 5, 2, .42);
  color: var(--espresso);
}
.film-cta.primary:hover::before {
  transform: translateX(0);
}
.film-cta.ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .5);
}
.film-cta.ghost:hover {
  background: rgba(255, 255, 255, .1);
}
.book-btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ivory);
  background: var(--espresso);
  padding: 1.25rem 2.6rem;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.book-btn span {
  position: relative;
  z-index: 1;
  transition: color .35s var(--ease-out);
}
.book-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform .4s var(--ease-out);
}
.book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(27, 19, 16, .24);
}
.book-btn:hover::before {
  transform: translateX(0);
}
.book-btn:hover span {
  color: var(--espresso);
}
.text-link {
  display: inline-block;
  margin-top: 2rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--gold);
  padding-bottom: .45rem;
  transition: color .3s, border-color .3s;
}
.text-link:hover {
  color: var(--gold);
}
.eyebrow-dark {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: 2rem;
  display: block;
}
.sect {
  padding: clamp(5rem, 12vh, 9rem) clamp(1.5rem, 6vw, 4rem);
}
.sect .inner {
  max-width: 1120px;
  margin: 0 auto;
}
.sect.light {
  background: var(--ivory);
  color: var(--espresso);
}
.sect.dark {
  background: var(--espresso-2);
  color: var(--ivory);
}
.sect h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.sect h2 .it {
  font-style: italic;
}
.sect h2 .dot {
  color: var(--gold);
}
.sect .lede {
  margin-top: 1.6rem;
  font-size: var(--t-lede);
  line-height: var(--lh-lede);
  max-width: 56ch;
}
.sect.light .lede {
  color: #4A443C;
}
.sect.dark .lede {
  color: rgba(241, 233, 215, .78);
}
.sect.dark .eyebrow-dark {
  color: var(--gold-lt);
}
.rise .inner > * {
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.js-reveal .rise .inner > * {
  opacity: 0;
  transform: translateY(26px);
}
.rise.in .inner > * {
  opacity: 1;
  transform: none;
}
.rise.in .inner > *:nth-child(2) {
  transition-delay: .09s;
}
.rise.in .inner > *:nth-child(3) {
  transition-delay: .18s;
}
.rise.in .inner > *:nth-child(4) {
  transition-delay: .27s;
}
.rise.in .inner > *:nth-child(5) {
  transition-delay: .36s;
}
.page-head {
  background: var(--espresso);
  color: var(--ivory);
  padding: clamp(8rem, 22vh, 13rem) clamp(1.5rem, 6vw, 4rem) clamp(4rem, 10vh, 7rem);
}
.page-head .inner {
  max-width: 1120px;
  margin: 0 auto;
}
.page-head h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 7.5vw, 5.6rem);
  line-height: 1;
  letter-spacing: -.025em;
  text-wrap: balance;
}
.page-head h1 .it {
  font-style: italic;
}
.page-head h1 .dot {
  color: var(--gold);
}
.page-head .lede {
  margin-top: 1.8rem;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.65;
  color: rgba(241, 233, 215, .78);
  max-width: 56ch;
}
.page-head .eyebrow-dark {
  color: var(--gold-lt);
}
.tease {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
}
.tease .eyebrow-dark {
  margin-bottom: 1.4rem;
}
.svc-grid {
  margin-top: 3.2rem;
  display: grid;
  gap: 1px;
  background: rgba(27, 19, 16, .16);
  border: 1px solid rgba(27, 19, 16, .16);
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
}
.svc {
  background: var(--ivory);
  padding: 1.8rem 1.6rem;
}
.svc.flag {
  background: var(--espresso);
  color: var(--ivory);
  grid-column: 1/-1;
  padding: 2.6rem 2rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  align-items: flex-start;
}
.svc .svc-eyebrow {
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-ink);
  display: block;
  margin-bottom: .7rem;
}
.svc h2,
.svc h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: -.01em;
}
.svc.flag h2,
.svc.flag h3 {
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
}
.svc.flag h2 .dot,
.svc.flag h3 .dot {
  color: var(--gold);
}
.svc h2 .it,
.svc h3 .it {
  font-style: italic;
}
.svc h2 .dot,
.svc h3 .dot {
  color: var(--gold);
}
.svc p {
  margin-top: .55rem;
  font-size: 14px;
  line-height: 1.6;
  color: #5a534b;
}
.svc.flag p {
  color: rgba(241, 233, 215, .78);
  max-width: 52ch;
}
.svc.flag p + p {
  margin-top: .9rem;
}
.svc.flag p.svc-flag-pull {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.05rem, 1.9vw, 1.35rem);
  line-height: 1.4;
  letter-spacing: -.01em;
  color: var(--ivory);
  max-width: 40ch;
}
.svc-statement {
  margin-top: clamp(2.2rem, 4vw, 3rem);
  padding-top: 1.6rem;
  border-top: 1px solid rgba(27, 19, 16, .16);
  max-width: 72ch;
}
.svc-statement > p {
  font-size: 15px;
  line-height: 1.7;
  color: #4e4740;
}
.svc-statement > p + p {
  margin-top: .9rem;
}
.svc-statement > p.svc-note {
  margin-top: 1.2rem;
}
.svc-note {
  margin-top: 1.6rem;
  font-size: 12.5px;
  letter-spacing: .02em;
  color: var(--ash);
}
.prose-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  margin-top: clamp(1.4rem, 3vw, 2.2rem);
}
@media (max-width: 880px) {
  .prose-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.prose-grid > :first-child {
  position: sticky;
  top: clamp(6rem, 14vh, 9rem);
}
@media (max-width: 880px) {
  .prose-grid > :first-child {
    position: static;
  }
}
.prose-body > p {
  margin-top: 1.05rem;
  font-size: 16px;
  line-height: 1.72;
  max-width: 66ch;
}
.prose-body > p:first-child {
  margin-top: 0;
}
.prose-body .starting-q {
  margin-top: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.05rem, 1.9vw, 1.32rem);
  line-height: 1.35;
  letter-spacing: -.01em;
  max-width: 30ch;
}
.sect.dark .prose-body .starting-q {
  color: var(--ivory);
}
.sect.light .prose-body .starting-q {
  color: var(--espresso);
}
.sect.light .prose-body > p {
  color: #4e4740;
}
.sect.dark .prose-body > p {
  color: rgba(241, 233, 215, .82);
}
.prose-body > p.pull {
  margin-top: 1.6rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.15rem, 2.1vw, 1.5rem);
  line-height: 1.35;
  letter-spacing: -.01em;
  max-width: 32ch;
}
.sect.light .prose-body > p.pull {
  color: var(--espresso);
}
.sect.dark .prose-body > p.pull {
  color: var(--ivory);
}
.prose-body .prose-sub {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid currentColor;
  border-top-color: rgba(27, 19, 16, .16);
}
.sect.dark .prose-body .prose-sub {
  border-top-color: rgba(241, 233, 215, .18);
}
.prose-body .prose-sub > h3 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}
.prose-body .prose-sub > p {
  margin-top: .7rem;
}
.fin-grid {
  margin-top: 3.2rem;
  display: grid;
  gap: 1px;
  background: rgba(27, 19, 16, .16);
  border: 1px solid rgba(27, 19, 16, .16);
  grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr));
}
.fin {
  background: var(--ivory);
  padding: 1.7rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.fin h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: -.01em;
}
.fin p {
  font-size: 13.5px;
  line-height: 1.55;
  color: #5a534b;
  flex: 1;
}
.fin .fin-apply {
  align-self: flex-start;
  margin-top: .9rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ivory);
  background: var(--espresso);
  padding: .7rem 1.15rem;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease-out);
}
.fin .fin-apply span {
  position: relative;
  z-index: 1;
  transition: color .35s var(--ease-out);
}
.fin .fin-apply::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform .4s var(--ease-out);
}
.fin .fin-apply:hover {
  transform: translateY(-1px);
}
.fin .fin-apply:hover::before {
  transform: translateX(0);
}
.fin .fin-apply:hover span {
  color: var(--espresso);
}
.fin .fin-soon {
  align-self: flex-start;
  margin-top: .9rem;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ash);
  border: 1px solid rgba(27, 19, 16, .2);
  padding: .7rem 1.15rem;
}
.fin-fineprint {
  margin-top: 1.4rem;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ash);
  max-width: 70ch;
}
.ph {
  position: relative;
  overflow: hidden;
  display: block;
}
.ph:not(:has(img)) {
  display: none;
}
.ph img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ph.r43 {
  aspect-ratio: 4/3;
}
.ph.r34 {
  aspect-ratio: 3/4;
}
.ph.r169 {
  aspect-ratio: 16/9;
}
.contact-meta a[href^="tel:"],
.contact-meta a[href^="sms:"] {
  font-weight: 500;
}
.nap {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  font-size: 14.5px;
  line-height: 1.6;
  letter-spacing: .01em;
  font-style: normal;
}
.nap a {
  text-decoration: none;
  border-bottom: 1px solid rgba(27, 19, 16, .25);
  padding-bottom: 1px;
  color: inherit;
  transition: border-color .3s, color .3s;
}
.nap a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.sect.dark .nap a,
.page-head .nap a {
  border-bottom-color: rgba(241, 233, 215, .28);
}
.nap .nap-phone {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  letter-spacing: -.01em;
  border-bottom: 0;
}
.nap .nap-phone:hover {
  color: var(--gold);
}
.nap .nap-hours {
  font-size: 12.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ash);
}
.sect.dark .nap .nap-hours {
  color: rgba(241, 233, 215, .6);
}
.header-phone {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  text-shadow: 0 1px 14px rgba(0, 0, 0, .5);
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
  transition: border-color .3s;
}
.header-phone:hover {
  border-bottom-color: var(--gold);
}
@media (max-width: 880px) {
  .header-phone {
    display: none;
  }
}
.callbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  display: none;
  background: var(--espresso);
  border-top: 1px solid rgba(241, 233, 215, .16);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  transition: transform .35s var(--ease-out);
}
.callbar.hidden {
  transform: translateY(110%);
}
.callbar-inner {
  display: grid;
  grid-template-columns: 1.25fr 1px 1fr 1px 1fr;
}
.callbar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: 1.05rem .5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--t-label);
  letter-spacing: var(--track-control);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ivory);
}
.callbar a:active {
  background: rgba(241, 233, 215, .08);
}
.callbar a.primary {
  color: var(--espresso);
  background: var(--gold);
}
.callbar a.primary:active {
  background: var(--gold-lt);
}
@media (max-width: 360px) {
  .callbar a {
    font-size: var(--t-label);
    letter-spacing: var(--track-control);
    gap: .32rem;
  }
}
.callbar .rule {
  background: rgba(241, 233, 215, .16);
}
.callbar svg {
  width: 15px;
  height: 15px;
  flex: none;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
}
@media (max-width: 880px) {
  .callbar {
    display: block;
  }
  body {
    padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
  }
  .header-cta {
    display: none;
  }
}
.reassure .inner {
  max-width: 1120px;
  margin: 0 auto;
}
.reassure blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  line-height: 1.24;
  letter-spacing: -.015em;
  max-width: 24ch;
  text-wrap: balance;
}
.reassure blockquote .it {
  font-style: italic;
}
.reassure blockquote .dot {
  color: var(--gold);
}
.reassure .r-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  margin-top: 0;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
}
.reassure .r-body p {
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  line-height: 1.7;
  max-width: 52ch;
}
.reassure .r-body p + p {
  margin-top: 1.1rem;
}
.cred {
  margin-top: 3.2rem;
  display: block;
  border-top: 1px solid rgba(241, 233, 215, .2);
}
.sect.light .cred {
  border-top-color: rgba(27, 19, 16, .22);
}
.cred div {
  display: grid;
  grid-template-columns: minmax(150px, 17%) 1fr;
  gap: clamp(1.2rem, 3.5vw, 2.6rem);
  align-items: baseline;
  padding: clamp(1.5rem, 3vh, 2.1rem) 0;
  border-bottom: 1px solid rgba(241, 233, 215, .13);
}
.sect.light .cred div {
  border-bottom-color: rgba(27, 19, 16, .15);
}
.cred dt {
  font-size: 12.5px;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(241, 233, 215, .55);
  margin-bottom: 0;
  padding-top: .5em;
  line-height: 1.4;
}
.sect.light .cred dt {
  color: var(--ash);
}
.cred dd .fig {
  font-family: var(--font-display);
  font-size: 1.25em;
  letter-spacing: -.01em;
}
.cred dd {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.3vw, 1.72rem);
  line-height: 1.22;
  letter-spacing: -.012em;
  max-width: 34ch;
}
.cred dd small {
  display: block;
  margin-top: .6rem;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(241, 233, 215, .68);
  letter-spacing: 0;
  max-width: 52ch;
}
.sect.light .cred dd small {
  color: #5a534b;
}
@media (max-width: 560px) {
  .cred div {
    grid-template-columns: 1fr;
    gap: .55rem;
  }
  .cred dt {
    padding-top: 0;
  }
}
.fin-embed {
  margin-top: 3.2rem;
}
.fin-embed h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: -.01em;
  margin-bottom: .6rem;
}
.fin-embed p.note {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ash);
  max-width: 62ch;
  margin-bottom: 1.6rem;
}
.fin-embed .frame {
  border: 1px solid rgba(27, 19, 16, .16);
  background: transparent;
  overflow: hidden;
  max-width: 800px;
  margin-inline: auto;
}
.fin-embed iframe {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
}
footer {
  background: var(--ivory);
  color: var(--espresso);
  border-top: 1px solid rgba(27, 19, 16, .12);
  padding: clamp(2.4rem, 5vw, 3.6rem) clamp(1.5rem, 6vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
footer nav {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
}
footer nav a {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ash);
  text-decoration: none;
  transition: color .3s;
}
footer nav a:hover {
  color: var(--espresso);
}
footer .fword {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -.01em;
}
footer .fword .dot {
  color: var(--gold);
}
footer .socials {
  display: flex;
  gap: 1.4rem;
  align-items: center;
}
footer .socials a {
  color: var(--ash);
  text-decoration: none;
  display: flex;
  transition: color .3s;
}
footer .socials a:hover {
  color: var(--gold);
}
footer .socials svg {
  width: 19px;
  height: 19px;
  display: block;
}
footer .fmeta {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ash);
}
footer .fnap {
  font-size: 13px;
  gap: .35rem;
  align-items: flex-start;
}
footer .fnap a {
  border-bottom-color: rgba(27, 19, 16, .2);
}
footer .fnap .fnap-phone {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -.01em;
  border-bottom: 0;
  color: var(--espresso);
}
footer .fnap .fnap-phone:hover {
  color: var(--gold);
}
footer .fnap .nap-hours {
  font-size: var(--t-label);
  letter-spacing: var(--track-label);
}
@media (max-width: 880px) {
  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.9rem;
  }
  footer .fnap {
    order: -1;
  }
}
.fld {
  margin-bottom: 1.7rem;
}
.fld:last-of-type {
  margin-bottom: 0;
}
.fld label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--espresso);
  margin-bottom: .6rem;
  line-height: 1.4;
}
.fld .req {
  color: var(--gold);
  margin-left: 2px;
}
.fld .hint {
  display: block;
  font-weight: 400;
  font-size: 12px;
  color: #8a8177;
  margin-top: .25rem;
  line-height: 1.4;
}
.fld label .opt {
  font-weight: 400;
  font-size: var(--t-label);
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: #8a8177;
  margin-left: .45rem;
}
.fld label .sub {
  display: block;
  font-weight: 400;
  font-size: 12.5px;
  margin-top: .2rem;
  line-height: 1.45;
}
.ir-budget-label .sub,
.ir-budget-sub {
  display: block;
  font-weight: 400;
  font-size: 12.5px;
  margin-top: .2rem;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
}
.fld input[type=text],
.fld input[type=email],
.fld input[type=tel],
.fld input[type=date],
.fld textarea,
.fld select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--espresso);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(27, 19, 16, .24);
  padding: .6rem 0;
  transition: border-color .3s;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.fld textarea {
  resize: vertical;
  min-height: 76px;
  line-height: 1.5;
}
.fld input:focus,
.fld textarea:focus,
.fld select:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.fld input::placeholder,
.fld textarea::placeholder {
  color: #b3aa9e;
}
.choices {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.choice {
  position: relative;
}
.choice input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  font-size: 16px;
}
.choice label {
  display: inline-block;
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  padding: .6rem 1.1rem;
  border: 1px solid rgba(27, 19, 16, .24);
  cursor: pointer;
  color: #5a534b;
  transition: all .25s var(--ease-out);
  white-space: nowrap;
}
.choice input:checked + label {
  background: var(--espresso);
  color: var(--ivory);
  border-color: var(--espresso);
}
.choice input:focus-visible + label {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.fld.invalid input,
.fld.invalid textarea {
  border-bottom-color: #a6362e;
}
.fld.invalid .choices {
  outline: 1px solid #a6362e;
  outline-offset: 6px;
}
.fld-err {
  display: none;
  color: #a6362e;
  font-size: 12px;
  margin-top: .4rem;
}
.fld.invalid .fld-err {
  display: block;
}
.modal-scrim {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(12, 7, 4, .62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s var(--ease-out), visibility .5s;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: clamp(1rem, 5vh, 4rem) 1rem;
}
.modal-scrim.open {
  opacity: 1;
  visibility: visible;
}
.modal {
  background: var(--ivory);
  color: var(--espresso);
  width: min(620px, 100%);
  margin: auto;
  position: relative;
  border: 1px solid rgba(27, 19, 16, .1);
  box-shadow: 0 40px 120px rgba(12, 7, 4, .5);
  transform: translateY(24px) scale(.98);
  opacity: 0;
  transition: transform .55s var(--ease-out), opacity .55s var(--ease-out);
}
.modal-scrim.open .modal {
  transform: none;
  opacity: 1;
}
.modal-head {
  padding: clamp(2rem, 4vw, 2.8rem) clamp(1.6rem, 4vw, 2.8rem) 1.4rem;
  border-bottom: 1px solid rgba(27, 19, 16, .1);
  position: relative;
}
.modal-eyebrow {
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.modal-head h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.04;
  letter-spacing: -.015em;
  color: var(--espresso);
}
.modal-head h3 .dot {
  color: var(--gold);
}
.modal-head p {
  margin-top: 1rem;
  font-size: 14px;
  line-height: 1.55;
  color: #5a534b;
  max-width: 44ch;
}
.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 38px;
  height: 38px;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--ash);
  font-size: 26px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .3s, transform .3s;
}
.modal-close:hover {
  color: var(--espresso);
  transform: rotate(90deg);
}
.modal-body {
  padding: clamp(1.6rem, 4vw, 2.4rem) clamp(1.6rem, 4vw, 2.8rem) clamp(2rem, 4vw, 2.8rem);
}
.modal-submit {
  width: 100%;
  margin-top: .6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--espresso);
  border: none;
  padding: 1.15rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.modal-submit span {
  position: relative;
  z-index: 1;
  transition: color .35s;
}
.modal-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform .4s var(--ease-out);
}
.modal-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(27, 19, 16, .22);
}
.modal-submit:hover:not(:disabled)::before {
  transform: translateX(0);
}
.modal-submit:hover:not(:disabled) span {
  color: var(--espresso);
}
.modal-submit:disabled {
  opacity: .6;
  cursor: default;
}
.modal-error {
  margin: .4rem 0 0;
  padding: .85rem 1rem;
  border: 1px solid rgba(138, 47, 47, .32);
  background: rgba(138, 47, 47, .06);
  color: #8a2f2f;
  font-size: 13.5px;
  line-height: 1.55;
}
.modal-error a {
  color: #8a2f2f;
  text-underline-offset: 3px;
}
.modal-fineprint {
  margin-top: 1.2rem;
  font-size: var(--t-micro);
  line-height: var(--lh-micro);
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
  color: #8a8177;
  text-align: center;
}
.modal-fineprint a {
  color: var(--espresso);
}
.consent-note {
  margin: 1.5rem 0 1rem;
  font-size: 13px;
  line-height: 1.6;
  color: #655C55;
  max-width: 46ch;
}
.inline-request .consent-note {
  margin-top: 1.4rem;
  margin-bottom: 0;
}
@media (max-width: 599px) {
  .inline-request .consent-note {
    text-align: center;
    margin-inline: auto;
  }
}
.modal-success {
  padding: clamp(3rem, 7vw, 5rem) clamp(1.6rem, 4vw, 2.8rem);
  text-align: center;
  display: none;
}
.modal-success.show {
  display: block;
}
.modal-body.hide {
  display: none;
}
.modal-success .mark {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.8rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 26px;
}
.modal-success h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--espresso);
  letter-spacing: -.015em;
}
.modal-success h3 .dot {
  color: var(--gold);
}
.modal-success p {
  margin-top: 1.1rem;
  font-size: 15px;
  line-height: 1.6;
  color: #5a534b;
  max-width: 40ch;
  margin-inline: auto;
}
.modal-success .sig {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: #5a534b;
  margin-top: 1.6rem;
}
.modal.done .modal-head {
  display: block;
  padding: 0;
  border: 0;
  min-height: 0;
}
.modal.done .modal-head > *:not(.modal-close) {
  display: none;
}
.modal.done {
  text-align: center;
}
.modal-success .success-back {
  margin-top: 2rem;
}
.page-head h1 {
  font-size: var(--t-d1);
  letter-spacing: var(--tr-d1);
  line-height: var(--lh-tight);
}
.sect h2 {
  font-size: var(--t-d2);
  letter-spacing: var(--tr-d2);
  line-height: var(--lh-display);
}
.modal-head h3,
.modal-success h3 {
  font-size: var(--t-d2);
  letter-spacing: var(--tr-d2);
  line-height: var(--lh-display);
}
.nap .nap-phone {
  font-size: var(--t-d3);
  letter-spacing: var(--tr-d3);
}
.reassure blockquote {
  letter-spacing: var(--tr-d3);
}
.svc h2,
.svc h3,
.fin h3 {
  font-size: var(--t-d4);
  letter-spacing: var(--tr-d4);
  line-height: var(--lh-snug);
}
.fin-embed h3 {
  font-size: var(--t-d4);
  letter-spacing: var(--tr-d4);
}
.cred dd {
  font-size: var(--t-d4);
  letter-spacing: var(--tr-d4);
  line-height: var(--lh-snug);
}
footer .fword {
  font-size: var(--t-d4);
  letter-spacing: var(--tr-d4);
}
footer .fnap .fnap-phone {
  font-size: var(--t-d4);
  letter-spacing: var(--tr-d4);
}
.brand-word {
  font-size: clamp(1.15rem, 2.1vw, 1.5rem);
  letter-spacing: var(--tr-d4);
}
.nav-overlay a {
  letter-spacing: -.018em;
}
.brand-word .dot,
.hero-copy h1 .dot,
.sect h2 .dot,
.page-head h1 .dot,
footer .fword .dot,
.modal-success h3 .dot {
  margin-left: -.04em;
  display: inline-block;
}
body {
  font-size: var(--t-body);
  letter-spacing: var(--tr-body);
  line-height: var(--lh-body);
}
.lede {
  letter-spacing: var(--tr-lede);
}
.header-cta,
.film-cta,
.book-btn {
  letter-spacing: .13em;
}
button,
input,
select,
textarea {
  font-family: inherit;
}
footer nav a {
  letter-spacing: .11em;
}
footer .fmeta {
  letter-spacing: .16em;
}
footer .socials a span {
  letter-spacing: .11em !important;
}
.qa {
  width: 100%;
  max-width: 640px;
  margin: clamp(2.4rem, 5vh, 3.4rem) auto 0;
  text-align: left;
  border-top: 1px solid rgba(27, 19, 16, .16);
}
.qa div {
  padding: clamp(1.15rem, 2.6vh, 1.6rem) 0;
  border-bottom: 1px solid rgba(27, 19, 16, .13);
}
.qa dt {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--t-d4);
  letter-spacing: var(--tr-d4);
  line-height: var(--lh-snug);
  color: var(--espresso);
  margin-bottom: .4rem;
}
.qa dd {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--t-body);
  line-height: var(--lh-body);
  color: #5a534b;
  max-width: 60ch;
}
@media (max-width: 600px) {
  .qa dd {
    font-size: 16px;
  }
}
.inline-request {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
}
.ir-fields {
  display: grid;
  gap: 1.5rem 1.6rem;
}
@media (min-width: 600px) {
  .ir-fields {
    grid-template-columns: 1fr 1fr;
  }
}
.ir-fld label {
  display: block;
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: .02em;
  color: var(--ash);
  margin-bottom: .5rem;
}
.ir-fld input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--espresso);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(27, 19, 16, .28);
  padding: .5rem 0 .6rem;
  border-radius: 0;
  transition: border-color .3s;
}
.ir-fld input:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.ir-err {
  margin-top: 1.1rem;
  font-size: 13.5px;
  line-height: 1.55;
  color: #8a2f2f;
}
.inline-request .ir-submit {
  width: 100%;
  margin-top: 1.9rem;
  text-align: center;
}
.ir-next {
  margin-top: 1.15rem;
  font-size: 13.5px;
  line-height: 1.6;
  color: #5a534b;
  max-width: 46ch;
}
@media (max-width: 599px) {
  .inline-request {
    max-width: none;
  }
  .ir-next {
    text-align: center;
    margin-inline: auto;
  }
  .ir-fld label {
    text-align: left;
  }
}
.sect h2 .dot,
.page-head h1 .dot,
.reassure blockquote .dot,
.svc h2 .dot,
.svc h3 .dot,
.svc.flag h2 .dot,
.svc.flag h3 .dot,
.fin-embed h3 .dot {
  color: currentColor;
  opacity: .4;
}
.eyebrow-dark {
  letter-spacing: var(--track-label);
  font-size: var(--t-label);
}
.svc .svc-eyebrow {
  letter-spacing: .18em;
}
.nap .nap-hours {
  letter-spacing: .1em;
}
.chapter-label {
  letter-spacing: .17em;
}
.text-link {
  border-bottom-color: rgba(166, 128, 62, .38);
}
.text-link:hover {
  border-bottom-color: var(--gold);
}
.header-nav a[aria-current=page] {
  border-bottom-color: rgba(241, 233, 215, .6);
}
@media (max-width: 880px) {
  .sect .lede,
  .page-head .lede {
    font-size: 17px;
    line-height: 1.6;
    max-width: 38ch;
  }
  .sect h2 {
    font-size: clamp(2.1rem, 8.4vw, 2.9rem);
  }
  .reassure blockquote {
    font-size: clamp(1.6rem, 6.4vw, 2.1rem);
  }
  .cred dd {
    font-size: 1.16rem;
  }
  .cred dd small {
    font-size: 13.5px;
  }
  .sect {
    padding: clamp(3.6rem, 9vh, 6rem) clamp(1.4rem, 6vw, 4rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition-duration: .001ms !important;
  }
  .scroll-hint::after {
    animation: none;
  }
}
.cases {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 7vw, 5rem);
  margin-top: clamp(2.5rem, 6vw, 4rem);
}
.case-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(6px, 1vw, 14px);
  max-width: 720px;
}
.case-fig {
  margin: 0;
  position: relative;
}
.case-fig img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: var(--ivory-2);
}
.case-fig figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  font-family: var(--font-body);
  font-size: var(--t-label);
  font-weight: 600;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--ivory);
  background: rgba(27, 19, 16, .72);
  padding: .5rem .85rem;
  backdrop-filter: blur(6px);
}
.case-note {
  margin-top: 1.1rem;
  max-width: 720px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ash);
  max-width: 62ch;
}
.case-note strong {
  color: var(--espresso);
  font-weight: 500;
}
.sect.dark .case-note {
  color: rgba(241, 233, 215, .68);
}
.sect.dark .case-note strong {
  color: var(--ivory);
}
.case-honesty {
  margin-top: clamp(3rem, 7vw, 4.5rem);
  padding-top: 1.6rem;
  border-top: 1px solid rgba(27, 19, 16, .14);
  font-size: 12.5px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: var(--ash);
  max-width: 70ch;
}
.sect.dark .case-honesty {
  border-top-color: rgba(241, 233, 215, .16);
  color: rgba(241, 233, 215, .6);
}
.guests {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(8px, 1.4vw, 18px);
  margin-top: clamp(2rem, 5vw, 3rem);
}
.guest {
  margin: 0;
}
.guest img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: var(--espresso-2);
}
.guest figcaption {
  margin-top: .7rem;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--gold);
}
.craft-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(8px, 1.4vw, 18px);
  margin-top: clamp(2rem, 5vw, 3rem);
}
.craft-pair img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--espresso-2);
}
@media (max-width: 560px) {
  .guests {
    grid-template-columns: 1fr 1fr;
  }
  .guests .guest:nth-child(3) {
    grid-column: 1/-1;
  }
  .guests .guest:nth-child(3) img {
    aspect-ratio: 16/10;
    object-position: 50% 14%;
  }
  .craft-pair {
    grid-template-columns: 1fr;
  }
}
.hero-case {
  display: block;
  margin: 1.6rem 0 .2rem;
  max-width: 560px;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(241, 233, 215, .16);
  padding: 10px 10px 12px;
  transition: border-color .35s var(--ease-out), background .35s var(--ease-out);
}
.hero-case:hover {
  border-color: rgba(166, 128, 62, .6);
  background: rgba(241, 233, 215, .03);
}
.hero-case img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-case span {
  display: block;
  margin-top: .7rem;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(241, 233, 215, .62);
  text-align: left;
}
.hero-case strong {
  font-weight: 500;
  color: var(--ivory);
}
@media (max-width: 760px) {
  .hero-case {
    margin: 1rem auto 0;
    max-width: 360px;
    padding: 8px 8px 10px;
  }
  .hero-case span {
    font-size: var(--t-micro);
  }
}
.doctor-cols {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 500px);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.doctor-fig {
  margin: 0;
}
.doctor-fig img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.doctor-fig figcaption {
  margin-top: .7rem;
  font-size: 12px;
  letter-spacing: .05em;
  color: var(--ash);
}
@media (max-width: 760px) {
  .doctor-cols {
    grid-template-columns: 1fr;
  }
  .doctor-fig {
    order: -1;
    max-width: none;
  }
}
.detail-pair {
  margin-top: clamp(3rem, 7vw, 5rem);
}
.hero-guests {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 1.1rem 0 .2rem;
  max-width: 500px;
}
.hero-guests img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
  border: 2px solid rgba(166, 128, 62, .65);
  margin-right: -22px;
  background: var(--espresso-2);
}
.hero-guests img:last-of-type {
  margin-right: 4px;
}
.hero-guests span {
  font-size: 12.5px;
  line-height: 1.4;
  color: rgba(241, 233, 215, .62);
  text-align: left;
}
.hero-guests strong {
  color: var(--ivory);
  font-weight: 500;
}
@media (max-width: 760px) {
  .hero-guests {
    margin: .8rem auto 0;
    max-width: 390px;
    gap: 12px;
  }
  .hero-guests img {
    width: 64px;
    height: 64px;
    margin-right: -18px;
  }
  .hero-guests span {
    font-size: var(--t-label);
    letter-spacing: 0;
    text-transform: none;
  }
}
.fcredit {
  display: inline-block;
  margin-top: .9rem;
  font-size: var(--t-label);
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ash);
  border-bottom: 1px solid transparent;
  transition: color .3s, border-color .3s;
}
.fcredit:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 0;
  z-index: 200;
  padding: .8rem 1.4rem;
  background: var(--espresso);
  color: var(--ivory);
  font-size: 13px;
  letter-spacing: .08em;
  text-decoration: none;
  transition: top .2s;
}
.skip-link:focus {
  top: 0;
}
.fld-budget {
  margin-top: .4rem;
}
.fld-budget .choices {
  margin-top: .7rem;
}
.fld-row {
  display: grid;
  gap: 0 1.1rem;
}
@media (min-width: 520px) {
  .fld-row {
    grid-template-columns: 1fr 1fr;
  }
}
.fld-row > .fld {
  margin-bottom: 1.7rem;
}
.fld-row > .fld-row-hint {
  grid-column: 1/-1;
  margin: -.9rem 0 1.7rem;
  font-size: 12px;
  line-height: 1.5;
  color: var(--ash);
}
.fld-goals > .fld-goals-label {
  display: block;
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: .02em;
  color: var(--espresso);
}
.fld-goals > .fld-goals-label .opt {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ash);
  margin-left: .4rem;
}
.fld-goals > .fld-goals-label .hint {
  display: block;
  margin-top: .3rem;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--ash);
}
.fld-goals .choices {
  margin-top: .75rem;
}
.fld-goals .choice label {
  font-size: 12.5px;
  padding: .5rem .8rem;
  line-height: 1.45;
  max-width: 100%;
  white-space: normal;
}
.fld-goals .fld-brief {
  margin-top: 1.3rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(27, 19, 16, .14);
}
.fld-budget .choice label {
  font-size: 12.5px;
  padding: .5rem .8rem;
}
.ir-budget {
  margin: .2rem 0 1.1rem;
}
.ir-budget[hidden] {
  display: none;
}
.ir-budget.reveal {
  animation: irBudgetIn .34s var(--ease-out) both;
}
@keyframes irBudgetIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ir-budget.reveal {
    animation: none;
  }
}
.ir-budget-label {
  display: block;
  margin-bottom: .6rem;
  font-size: 13px;
  color: var(--ash);
}
.ir-budget-hint {
  display: block;
  margin-top: .35rem;
  font-size: 12px;
  line-height: 1.55;
  color: var(--ash);
  opacity: .85;
  letter-spacing: 0;
  text-transform: none;
}
.ir-budget .choice label {
  font-size: 12.5px;
  padding: .5rem .8rem;
}
.ir-goals {
  margin-top: 1.7rem;
  margin-bottom: 1.6rem;
}
.ir-goals .choices {
  margin-top: .2rem;
}
.ir-other {
  margin-top: 1.1rem;
}
.case-pair-wide .case-fig img {
  aspect-ratio: 3/2;
}
.doc-head {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 380px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}
.doc-portrait {
  margin: 0;
}
.doc-portrait img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: 50% 20%;
}
@media (max-width: 820px) {
  .doc-head {
    grid-template-columns: 1fr;
  }
  .doc-portrait {
    max-width: 300px;
  }
}
@media (max-width: 820px) {
  #modalClose {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
  }
  .socials a {
    display: inline-block;
    padding: .7rem .2rem;
  }
}
.svc-eyebrow {
  color: var(--gold-ink);
}
.sect.dark .svc-eyebrow,
.page-head .svc-eyebrow {
  color: var(--gold-lt);
}
.press {
  margin: 0 0 clamp(2rem, 5vw, 3rem);
  padding-left: clamp(1rem, 2vw, 1.6rem);
  border-left: 2px solid rgba(166, 128, 62, .5);
  max-width: 62ch;
}
.press blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  line-height: 1.45;
  letter-spacing: -.01em;
  color: var(--ivory);
}
.press figcaption {
  margin-top: .85rem;
  font-size: 11px;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--gold-lt);
}
.press figcaption a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 165, 120, .4);
}
.press figcaption a:hover {
  border-bottom-color: var(--gold-lt);
}
.eyebrow-dark,
.svc-eyebrow,
.svc .svc-eyebrow,
.chapter-label,
.nap .nap-hours,
.header-nav a,
.overlay-meta,
.case-fig figcaption,
.guest figcaption,
.press figcaption,
.hero-proof li,
.opt-credit,
.ir-budget-label .opt,
footer nav a,
footer .fmeta,
footer .socials a span {
  font-size: var(--t-label);
  letter-spacing: var(--track-label);
  line-height: var(--lh-micro);
}
.header-cta,
.header-phone,
.film-cta,
.book-btn,
.text-link,
.ir-submit,
.fin .fin-soon {
  font-size: var(--t-label);
  letter-spacing: var(--track-control);
  line-height: var(--lh-micro);
}
.eyebrow,
.chapter-label {
  font-size: var(--t-label);
  letter-spacing: var(--track-label);
}
.proof-rating {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  margin-top: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: clamp(2.4rem, 5vw, 3.6rem);
}
.proof-rating-value {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 4rem);
  line-height: var(--lh-tight);
  letter-spacing: var(--tr-d1);
  color: var(--ivory);
}
.proof-rating-of {
  font-size: .42em;
  color: var(--gold-lt);
  letter-spacing: 0;
  margin-left: .15em;
}
.proof-rating-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.2rem;
  font-size: var(--t-label);
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  line-height: var(--lh-micro);
  color: var(--gold-lt);
}
.proof-rating-meta a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 165, 120, .4);
}
.proof-rating-meta a:hover {
  border-bottom-color: var(--gold-lt);
}
.proof-rating-meta time {
  color: var(--ash);
  opacity: .9;
}
.proof-quotes {
  display: grid;
  gap: 1px;
  background: rgba(241, 233, 215, .18);
  border: 1px solid rgba(241, 233, 215, .18);
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
}
.proof-quote {
  margin: 0;
  background: var(--espresso);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.proof-quote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.05rem, 1.9vw, 1.28rem);
  line-height: 1.5;
  letter-spacing: -.008em;
  color: var(--ivory);
}
.proof-quote figcaption {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: .32rem;
}
.proof-name {
  font-size: var(--t-label);
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  line-height: var(--lh-micro);
  color: var(--gold-lt);
}
.proof-treatment {
  font-size: var(--t-micro);
  letter-spacing: var(--tr-micro);
  line-height: var(--lh-micro);
  color: var(--ash);
}
.proof-source {
  font-size: var(--t-micro);
  letter-spacing: var(--tr-micro);
  color: var(--ash);
  text-decoration: none;
  border-bottom: 1px solid rgba(107, 97, 90, .5);
  align-self: flex-start;
}
.proof-source:hover {
  border-bottom-color: var(--gold-lt);
  color: var(--gold-lt);
}
.proof-disclosure {
  font-size: var(--t-micro);
  line-height: var(--lh-micro);
  color: var(--ash);
  border-top: 1px solid rgba(241, 233, 215, .14);
  padding-top: .6rem;
  margin-top: .25rem;
}
.proof-videos {
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
  display: grid;
  gap: clamp(1rem, 2vw, 1.6rem);
  justify-content: start;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 340px));
}
.proof-video {
  margin: 0;
}
.proof-video video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: var(--espresso-2);
}
.proof-video figcaption {
  margin-top: .75rem;
  display: flex;
  flex-direction: column;
  gap: .28rem;
}
.proof-len {
  font-size: var(--t-micro);
  color: var(--ash);
}
.proof-stories {
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
  display: grid;
  gap: clamp(2.4rem, 5vw, 3.6rem);
}
.proof-story {
  display: grid;
  gap: clamp(1.4rem, 3vw, 2.4rem);
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
.proof-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(6px, 1vw, 14px);
}
.proof-fig {
  margin: 0;
  position: relative;
}
.proof-fig img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: var(--espresso-2);
}
.proof-fig figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: .45rem .7rem;
  background: rgba(27, 19, 16, .72);
  color: var(--ivory);
  font-size: var(--t-label);
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  line-height: var(--lh-micro);
}
.proof-arc {
  display: grid;
  gap: 1.15rem;
}
.proof-arc dt {
  font-size: var(--t-label);
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  line-height: var(--lh-micro);
  color: var(--gold-lt);
}
.proof-arc dd {
  margin-top: .45rem;
  font-size: var(--t-small);
  line-height: var(--lh-body);
  color: var(--ivory-2);
}
.proof-story-body .proof-name {
  margin-top: 1.4rem;
  display: block;
}
@media (max-width: 760px) {
  .proof-story {
    grid-template-columns: 1fr;
  }
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:not([tabindex="-1"]):focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 1px;
}
[tabindex="-1"]:focus,
[tabindex="-1"]:focus-visible {
  outline: none;
}
.sect.light a:focus-visible,
.sect.light button:focus-visible,
.sect.light summary:focus-visible,
.page-head + .sect.light a:focus-visible {
  outline-color: var(--gold-ink);
}
.fld input:focus-visible,
.fld textarea:focus-visible,
.ir-fld input:focus-visible {
  outline: none;
  border-bottom-color: var(--gold);
  box-shadow: 0 1px 0 0 var(--gold);
}
.svc.flag .svc-eyebrow {
  color: var(--gold-lt);
}
.fld .hint {
  color: #655C55;
}
.modal-fineprint {
  color: #655C55;
}
.fld .req {
  color: var(--gold-ink);
}
.nojs-note {
  display: block;
  margin-top: 1.4rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(122, 74, 42, .34);
  background: rgba(122, 74, 42, .06);
  font-size: var(--t-small);
  line-height: var(--lh-body);
  color: #4A443C;
}
.nojs-note a {
  color: var(--espresso);
  text-underline-offset: 3px;
}
.sect.dark .nojs-note {
  border-color: rgba(241, 233, 215, .3);
  background: rgba(241, 233, 215, .06);
  color: var(--ivory-2);
}
.sect.dark .nojs-note a {
  color: var(--gold-lt);
}
.preview-band {
  background: var(--cognac);
  color: var(--ivory);
  padding: .72rem 1.1rem;
  text-align: center;
  font-size: var(--t-label);
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  line-height: var(--lh-micro);
}
.preview-band[hidden] {
  display: none;
}
.modal-success .mark[hidden] {
  display: none;
}
.modal-success #successPreview code {
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  font-size: .92em;
  background: rgba(27, 19, 16, .07);
  padding: .1em .35em;
}
.modal-success #successPreview a {
  color: var(--espresso);
  text-underline-offset: 3px;
}
.nav-group {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-group-btn {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .92);
  background: none;
  border: none;
  padding: 0 0 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .45em;
  text-shadow: 0 1px 3px rgba(8, 4, 2, .9), 0 1px 14px rgba(0, 0, 0, .5);
  border-bottom: 1px solid transparent;
  transition: color .3s var(--ease-out), border-color .3s;
}
.nav-group-btn:hover {
  color: #fff;
}
.nav-group-btn[data-current] {
  color: #fff;
  border-bottom-color: var(--gold);
}
.nav-group-btn::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-top: -3px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  transition: transform .3s var(--ease-out), margin-top .3s var(--ease-out);
}
.nav-group:hover .nav-group-btn::after,
.nav-group-btn[aria-expanded=true]::after {
  transform: rotate(-135deg);
  margin-top: 1px;
}
.nav-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 99;
  min-width: 264px;
  margin-top: 14px;
  transform: translateX(-50%) translateY(8px);
  background: rgba(20, 14, 11, .97);
  backdrop-filter: saturate(120%) blur(10px);
  border: 1px solid rgba(241, 233, 215, .13);
  padding: .45rem 0;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity .26s var(--ease-out),
    transform .26s var(--ease-out),
    visibility .26s;
}
.nav-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -15px;
  height: 15px;
}
.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu,
.nav-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-menu a {
  display: block;
  padding: .72rem 1.2rem;
  border-bottom: none;
  font-size: inherit;
  letter-spacing: normal;
  text-transform: none;
  text-shadow: none;
  transition: background .25s var(--ease-out);
}
.nav-menu a:hover {
  background: rgba(166, 128, 62, .12);
}
.nav-menu a b {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.02rem;
  letter-spacing: -.01em;
  color: var(--ivory);
  line-height: 1.2;
}
.nav-menu a i {
  display: block;
  margin-top: .2rem;
  font-style: normal;
  font-size: 11.5px;
  line-height: 1.4;
  color: rgba(241, 233, 215, .5);
}
.nav-menu a:hover b {
  color: #fff;
}
.nav-menu a[aria-current=page] b {
  color: #fff;
}
.nav-menu a[aria-current=page] {
  box-shadow: inset 2px 0 0 var(--gold);
}
@media (max-width: 880px) {
  .nav-group {
    display: none;
  }
}
.nav-overlay {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-top: max(4.5rem, env(safe-area-inset-top));
  padding-bottom: max(2rem, env(safe-area-inset-bottom));
}
.nav-overlay.open a:nth-child(7) {
  transition-delay: .3s;
}
.nav-overlay.open a:nth-child(8) {
  transition-delay: .35s;
}
.nav-overlay.open a:nth-child(9) {
  transition-delay: .4s;
}
.nav-overlay.open a:nth-child(10) {
  transition-delay: .45s;
}
@media (max-height: 760px) {
  .nav-overlay a {
    font-size: clamp(1.5rem, 6.4vw, 2.1rem);
    padding: .78rem 0;
  }
}
.case-fig img,
.craft-pair img,
.doc-portrait img,
.hero-case img,
.ph img,
.mark-still img {
  outline: 1px solid rgba(166, 128, 62, .65);
  outline-offset: -1px;
}
.hero-case {
  border-color: rgba(241, 233, 215, .1);
}
.hero-case:hover {
  border-color: rgba(166, 128, 62, .35);
}
.hero-guests img {
  outline: none;
}
@media (forced-colors: active) {
  .case-fig img,
  .craft-pair img,
  .doc-portrait img,
  .hero-case img,
  .ph img,
  .mark-still img {
    outline-color: CanvasText;
  }
}
.sect .svc-cat {
  margin: clamp(3rem, 7vw, 4.4rem) 0 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--t-label);
  line-height: 1.4;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--gold-ink);
  padding-bottom: .9rem;
  border-bottom: 1px solid rgba(27, 19, 16, .16);
}
.sect .svc-cat:first-of-type {
  margin-top: 0;
}
.svc-cat + .svc-grid {
  margin-top: 0;
  border-top: none;
}
.svc-lead {
  margin-top: .6rem;
  font-size: 14.5px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--espresso);
}
.svc .svc-lead + p {
  margin-top: .5rem;
}
.svc-tags {
  margin-top: .9rem;
  font-size: 12px;
  letter-spacing: .02em;
  color: var(--gold-ink);
}
.svc-fine {
  margin-top: .9rem;
  font-size: 12.5px;
  line-height: 1.5;
  font-style: italic;
  color: var(--gold-ink);
}
.sect.dark .svc-lead {
  color: var(--ivory);
}
.faq-list {
  margin-top: clamp(2.6rem, 6vw, 3.6rem);
  border-top: 1px solid rgba(27, 19, 16, .16);
}
.faq-item {
  padding: clamp(1.8rem, 4vw, 2.6rem) 0;
  border-bottom: 1px solid rgba(27, 19, 16, .16);
  display: grid;
  gap: clamp(.8rem, 2vw, 2.6rem);
  align-items: start;
}
.faq-num {
  font-size: var(--t-label);
  letter-spacing: var(--track-label);
  color: var(--gold-ink);
  display: block;
  margin-bottom: .8rem;
}
.sect .faq-q {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.25rem, 2.3vw, 1.7rem);
  line-height: 1.22;
  letter-spacing: -.015em;
  color: var(--espresso);
}
.faq-a p {
  font-size: clamp(.95rem, 1.5vw, 1.02rem);
  line-height: 1.68;
  color: #4A443C;
  max-width: 66ch;
}
.faq-a p + p {
  margin-top: 1rem;
}
.faq-a a {
  color: inherit;
}
@media (min-width: 900px) {
  .faq-item {
    grid-template-columns: minmax(260px, .85fr) 1.15fr;
  }
}
.sect.dark .faq-list,
.sect.dark .faq-item {
  border-color: rgba(241, 233, 215, .16);
}
.sect.dark .faq-q {
  color: var(--ivory);
}
.sect .faq-q .dot {
  color: var(--gold);
}
.sect.dark .faq-a p {
  color: rgba(241, 233, 215, .74);
}
.sect.dark .faq-num {
  color: var(--gold-lt);
}
.nav-menu-financing {
  min-width: 288px;
}
.nav-group-financing:hover > .nav-menu-financing,
.nav-group-financing:focus-within > .nav-menu-financing {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
}
.nav-group-financing > .nav-menu-financing.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-group-financing:hover .nav-group-btn::after {
  transform: rotate(45deg);
  margin-top: -3px;
}
.nav-group-financing .nav-group-btn[aria-expanded=true]::after {
  transform: rotate(-135deg);
  margin-top: 1px;
}
.nav-menu-financing .nav-menu-all {
  margin-top: .4rem;
  padding-top: .8rem;
  border-top: 1px solid rgba(241, 233, 215, .13);
}
.nav-menu-financing .nav-menu-all b {
  color: var(--gold-lt);
}
.nav-menu-financing .nav-menu-all:hover b {
  color: #fff;
}
.nav-menu-financing a[target=_blank] b::after {
  content: "↗";
  margin-left: .4em;
  font-size: .72em;
  color: var(--gold);
  vertical-align: .08em;
}
.overlay-group {
  display: flex;
  flex-direction: column;
}
.overlay-group-btn {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -.015em;
  font-size: clamp(1.9rem, 8.5vw, 3rem);
  line-height: 1.1;
  color: var(--ivory);
  background: none;
  border: none;
  border-bottom: 1px solid rgba(241, 233, 215, .12);
  padding: 1.05rem 0;
  text-align: left;
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity .5s var(--ease-out),
    transform .5s var(--ease-out),
    color .3s;
}
.nav-overlay.open .overlay-group-btn {
  opacity: 1;
  transform: none;
  transition-delay: .3s;
}
.overlay-group-btn .dot {
  color: var(--gold);
}
.overlay-group-btn::after {
  content: "";
  width: 9px;
  height: 9px;
  margin-left: auto;
  margin-top: -4px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg);
  transition: transform .34s var(--ease-out), margin-top .34s var(--ease-out);
}
.overlay-group-btn[aria-expanded=true]::after {
  transform: rotate(-135deg);
  margin-top: 3px;
}
.overlay-sub {
  display: flex;
  flex-direction: column;
  padding: .35rem 0 .5rem;
}
.overlay-sub[hidden] {
  display: none;
}
.nav-overlay .overlay-sub-link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: .02em;
  color: rgba(241, 233, 215, .82);
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: .5em;
  padding: .55rem 0 .55rem 1.15rem;
  border-bottom: 1px solid rgba(241, 233, 215, .07);
  box-shadow: inset 2px 0 0 rgba(166, 128, 62, .35);
  opacity: 1;
  transform: none;
  transition: color .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.nav-overlay .overlay-sub-link:hover,
.nav-overlay .overlay-sub-link:active {
  color: #fff;
  box-shadow: inset 2px 0 0 var(--gold);
}
.overlay-sub-ext {
  color: var(--gold);
  font-size: .82em;
  margin-left: .1em;
}
.nav-overlay .overlay-sub-all {
  color: var(--gold-lt);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  border-bottom: none;
}
.fin-embed,
.fin {
  scroll-margin-top: clamp(88px, 14vh, 120px);
}
