:root {
  --ink: #070807;
  --ink-soft: #0d0e0d;
  --paper: #e7e0d6;
  --muted: #aaa59d;
  --gold: #c99145;
  --gold-light: #e1b46b;
  --gold-dark: #755323;
  --rule: rgba(198, 143, 66, 0.55);
  --serif: "Baskerville", "Iowan Old Style", "Palatino Linotype", Palatino,
    Georgia, serif;
  --sans: Avenir, "Gill Sans", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 8vw, 1240px);
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(20px, 2.2vw, 42px);
  width: 100%;
  min-height: 88px;
  padding: 16px clamp(24px, 3vw, 58px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.035);
  background: linear-gradient(180deg, rgba(3, 4, 3, 0.92), transparent);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-name {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.24em;
  line-height: 1.2;
}

.brand-descriptor {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.18em;
  line-height: 1.4;
}

.main-nav {
  display: flex;
  min-width: 0;
  justify-content: center;
  gap: clamp(18px, 1.8vw, 34px);
}

.main-nav a {
  color: #d3cec6;
  font-size: clamp(11px, 0.68vw, 13px);
  font-weight: 500;
  letter-spacing: 0.16em;
  white-space: nowrap;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--gold-light);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 28px 11px;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.19em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-outline {
  border: 1px solid var(--gold);
  color: var(--gold-light);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: var(--gold);
  color: #080807;
}

.button-gold {
  background: linear-gradient(135deg, #e0b86f, #c28a3f);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  color: #0a0907;
}

.button-gold:hover,
.button-gold:focus-visible {
  background: linear-gradient(135deg, #edca88, #d39a4c);
}

.header-cta {
  min-height: 42px;
  padding-inline: clamp(14px, 1.2vw, 20px);
  font-size: clamp(11px, 0.64vw, 12px);
  letter-spacing: 0.15em;
  white-space: nowrap;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 680px;
  overflow: hidden;
  background-color: #060706;
  background-image: url("assets/hero-still-life.png");
  background-position: center;
  background-size: cover;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(transparent, var(--ink));
  content: "";
}

.hero-shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 4, 3, 0.98) 0%, rgba(3, 4, 3, 0.93) 28%, rgba(3, 4, 3, 0.32) 55%, rgba(3, 4, 3, 0.05) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 30%);
}

.hero-content {
  padding-top: 160px;
  padding-bottom: 86px;
}

.hero-content > * {
  max-width: 545px;
}

.hero-actions {
  display: flex;
  max-width: 680px;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 14px;
}

.hero-actions consultation-inquiry {
  max-width: none;
}

.hero-actions consultation-inquiry .button,
.hero-sample-button {
  height: 100%;
}

.hero-sample-button {
  background: rgba(5, 6, 5, 0.46);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(52px, 5vw, 76px);
  letter-spacing: -0.025em;
  line-height: 0.97;
}

h1 em,
h2 em {
  display: block;
  color: var(--gold);
  font-weight: 400;
}

.hero-copy {
  margin-bottom: 27px;
  color: #c1bdb6;
  font-size: 16px;
  line-height: 1.55;
}

.story-section {
  padding: 32px 0 54px;
  background:
    radial-gradient(circle at 50% 5%, rgba(122, 87, 38, 0.075), transparent 37%),
    linear-gradient(120deg, #090a09, #0b0c0b 50%, #080908);
}

.narrow {
  max-width: 710px;
}

.center {
  text-align: center;
}

.story-section h2 {
  margin-bottom: 16px;
  font-size: clamp(36px, 4vw, 53px);
  letter-spacing: 0.005em;
  line-height: 1.05;
}

.story-section h2 em {
  margin-top: 2px;
}

.story-section .narrow > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.process {
  margin-top: 34px;
  border-top: 1px solid var(--rule);
  padding-top: 19px;
}

.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.section-label span {
  width: 38px;
  height: 1px;
  background: var(--rule);
}

.section-label p {
  margin: 0;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
}

.step {
  min-height: 198px;
  padding: 0 clamp(24px, 4vw, 58px);
  text-align: center;
}

.step + .step {
  border-left: 1px solid var(--rule);
}

.step-number {
  display: block;
  margin-bottom: 2px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 39px;
  letter-spacing: 0.08em;
  line-height: 1;
}

.step h3 {
  margin-bottom: 12px;
  font-size: 23px;
}

.step p {
  margin-bottom: 0;
  color: #aaa69f;
  font-size: 16px;
  line-height: 1.7;
}

.showcase {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: #090a09;
}

.example-panel {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 520px;
  border-right: 1px solid var(--rule);
}

.example-image {
  position: relative;
  min-height: 100%;
  background-image:
    linear-gradient(90deg, transparent 60%, #090a09 100%),
    url("assets/quest-box.png");
  background-position: 54% center;
  background-size: cover;
}

.example-copy {
  align-self: center;
  padding: 54px 36px 54px 10px;
}

.gold-rule {
  display: block;
  width: 42px;
  height: 1px;
  margin: -4px 0 31px;
  background: var(--gold-dark);
}

.example-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(25px, 2.2vw, 35px);
  line-height: 1.52;
}

.example-copy ul,
.offer-details ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.example-copy li,
.offer-details li {
  position: relative;
  padding-left: 18px;
  color: #aaa69f;
  font-size: 14px;
  line-height: 1.6;
}

.example-copy li + li,
.offer-details li + li {
  margin-top: 12px;
}

.example-copy li::before,
.offer-details li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.demo-quest-button {
  margin-top: 28px;
}

.offer-panel {
  align-self: center;
  padding: 44px clamp(36px, 5vw, 74px);
}

.offer-panel h2 {
  margin-bottom: 10px;
  font-size: clamp(37px, 3.5vw, 52px);
  line-height: 1.03;
}

.offer-intro {
  max-width: 500px;
  margin-bottom: 6px;
  color: #aaa69f;
  font-size: 14px;
  line-height: 1.7;
}

.price {
  margin-bottom: 11px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 8px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 48px;
  letter-spacing: 0.06em;
  line-height: 1;
}

.price span {
  margin-right: 6px;
  font-size: 31px;
}

.offer-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin: 14px 0 18px;
}

.offer-button {
  width: 100%;
}

.fine-print {
  margin: 10px auto 0;
  color: #938c83;
  font-size: 12px;
  letter-spacing: 0.06em;
  line-height: 1.55;
  text-align: center;
}

.faq-section {
  border-bottom: 1px solid var(--rule);
  padding: clamp(62px, 7vw, 96px) 0;
  background: #0a0b0a;
}

.faq-inner {
  max-width: 940px;
}

.faq-heading {
  margin-bottom: 34px;
}

.faq-heading .eyebrow {
  margin-bottom: 10px;
}

.faq-heading h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.05;
}

.faq-list {
  border-bottom: 1px solid var(--rule);
}

.faq-item {
  border-top: 1px solid var(--rule);
}

.faq-item summary {
  position: relative;
  padding: 22px 54px 21px 0;
  color: var(--paper);
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.3;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  color: var(--gold);
  content: "+";
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item summary:hover,
.faq-item summary:focus-visible {
  color: var(--gold-light);
}

.faq-item p {
  max-width: 760px;
  margin: -3px 54px 22px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.consultation {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  background-color: #080908;
  background-image: url("assets/letter-still-life.png");
  background-position: center;
  background-size: cover;
}

.consultation::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 30%, rgba(5, 6, 5, 0.5) 48%, rgba(5, 6, 5, 0.97) 72%);
  content: "";
}

.consultation-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 410px;
  align-items: center;
  justify-content: flex-end;
}

.consultation-copy {
  width: 49%;
  padding: 54px 0 48px 30px;
}

.consultation h2 {
  margin-bottom: 14px;
  font-size: clamp(40px, 4vw, 58px);
  line-height: 0.98;
}

.consultation h2 em {
  display: inline;
}

.consultation-copy > p:not(.signoff) {
  max-width: 560px;
  margin-bottom: 19px;
  color: #aaa69f;
  font-size: 16px;
  line-height: 1.7;
}

.signoff {
  margin: 10px 0 0;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px clamp(28px, 5vw, 78px);
  background: #050605;
  color: #938c83;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-brand {
  color: #c8c1b7;
}

.footer-brand .brand-name {
  color: #c8c1b7;
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1280px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .main-nav {
    justify-content: flex-end;
  }

  .header-cta {
    display: none;
  }

  .showcase {
    grid-template-columns: 1fr;
  }

  .example-panel {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .offer-panel {
    width: min(100%, 760px);
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .site-header {
    position: relative;
    display: flex;
    min-height: auto;
    flex-wrap: wrap;
    justify-content: center;
    padding-block: 18px 14px;
    background: #060706;
  }

  .site-header .brand {
    align-items: center;
    text-align: center;
  }

  .main-nav {
    width: 100%;
    justify-content: center;
    gap: 12px 22px;
    flex-wrap: wrap;
  }

  .main-nav a {
    font-size: 12px;
  }

  .hero {
    min-height: 680px;
    background-position: 64% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(3, 4, 3, 0.96), rgba(3, 4, 3, 0.76) 66%, rgba(3, 4, 3, 0.35));
  }

  .hero-content {
    padding-top: 98px;
  }

  .steps {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }

  .step {
    min-height: auto;
    padding: 28px;
  }

  .step + .step {
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .example-panel {
    grid-template-columns: 1fr;
  }

  .example-image {
    min-height: 470px;
    background-image:
      linear-gradient(180deg, transparent 70%, #090a09 100%),
      url("assets/quest-box.png");
    background-position: center 56%;
  }

  .example-copy {
    padding: 16px 8vw 58px;
  }

  .consultation {
    background-position: 28% center;
  }

  .consultation::after {
    background: linear-gradient(90deg, rgba(5, 6, 5, 0.36), rgba(5, 6, 5, 0.94) 70%);
  }

  .consultation-copy {
    width: 64%;
  }
}

@media (min-width: 581px) and (max-width: 700px) {
  .main-nav a:nth-last-child(-n + 2) {
    display: none;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(100% - 36px, 1240px);
  }

  .site-header {
    gap: 8px;
    padding: 14px max(16px, env(safe-area-inset-right)) 10px
      max(16px, env(safe-area-inset-left));
  }

  .brand-name {
    font-size: 14px;
  }

  .brand-descriptor {
    font-size: 11px;
  }

  .main-nav {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 8px;
  }

  .main-nav a {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    font-size: clamp(10px, 2.75vw, 11px);
    letter-spacing: 0.1em;
  }

  .faq-section {
    padding-block: 52px;
  }

  .faq-heading {
    margin-bottom: 27px;
  }

  .faq-item summary {
    min-height: 58px;
    padding: 17px 42px 16px 0;
  }

  .faq-item p {
    margin-top: 8px;
    margin-right: 0;
    margin-bottom: 20px;
    line-height: 1.7;
  }

  .faq-item summary:focus-visible {
    border-radius: 2px;
    outline: 1px solid var(--gold-light);
    outline-offset: 4px;
  }

  .main-nav a:nth-last-child(-n + 2) {
    display: none;
  }

  .hero {
    min-height: 690px;
    background-position: 66% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(3, 4, 3, 0.95), rgba(3, 4, 3, 0.77));
  }

  .hero-content {
    padding-top: 56px;
    padding-bottom: 52px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 49px);
    line-height: 0.98;
  }

  .hero-copy {
    font-size: 16px;
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding-inline: 14px;
    font-size: 11px;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions consultation-inquiry {
    width: 100%;
  }

  .story-section {
    padding-top: 48px;
  }

  .story-section h2 {
    font-size: clamp(34px, 9.8vw, 38px);
    line-height: 1.06;
  }

  .step {
    padding-inline: 18px;
  }

  .example-image {
    min-height: clamp(310px, 96vw, 370px);
  }

  .example-copy {
    padding: 18px 18px 50px;
  }

  .example-copy h2 {
    font-size: clamp(25px, 7vw, 28px);
    line-height: 1.32;
  }

  .example-copy li,
  .offer-details li {
    font-size: 15px;
  }

  .offer-panel {
    padding: 48px 18px;
  }

  .offer-panel h2 {
    font-size: clamp(34px, 9.5vw, 39px);
    line-height: 1.06;
  }

  .offer-intro {
    font-size: 15px;
  }

  .offer-details {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .consultation {
    min-height: 570px;
    background-position: 37% center;
  }

  .consultation::after {
    background: linear-gradient(180deg, rgba(5, 6, 5, 0.22), rgba(5, 6, 5, 0.96) 52%);
  }

  .consultation-inner {
    min-height: 570px;
    align-items: flex-end;
  }

  .consultation-copy {
    width: 100%;
    padding: 220px 0 42px;
  }

  .consultation h2 {
    font-size: clamp(38px, 10.8vw, 42px);
    line-height: 1.03;
  }

  .site-footer {
    flex-direction: column;
    gap: 18px;
    padding-inline: 18px;
    text-align: center;
  }

  .site-footer .brand {
    align-items: center;
  }
}

/* Private consultation form */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.consultation {
  min-height: 0;
  padding: clamp(74px, 8vw, 116px) 0;
  background-image:
    linear-gradient(90deg, rgba(5, 6, 5, 0.72), rgba(5, 6, 5, 0.92)),
    url("assets/letter-still-life.png");
  background-position: center;
}

.consultation::after {
  background:
    radial-gradient(circle at 15% 16%, rgba(201, 145, 69, 0.14), transparent 30%),
    linear-gradient(110deg, rgba(5, 6, 5, 0.14), rgba(5, 6, 5, 0.72) 58%, rgba(5, 6, 5, 0.94));
}

.consultation-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(56px, 7vw, 108px);
  min-height: 0;
  align-items: center;
}

.consultation-copy {
  width: auto;
  padding: 0;
}

.consultation .consultation-copy > .eyebrow {
  margin-bottom: 14px;
  color: var(--gold-light);
  font-size: 13px;
  line-height: 1.4;
}

.consultation h2 {
  margin-bottom: 20px;
  font-size: clamp(43px, 4.4vw, 65px);
  line-height: 0.98;
}

.consultation-copy > p:not(.eyebrow):not(.signoff):not(.consultation-email-fallback):not(.complimentary-note) {
  max-width: 530px;
  margin-bottom: 26px;
  color: #b7b1a8;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.72;
}

.consultation-promises {
  max-width: 520px;
  margin: 31px 0 27px;
  border-top: 1px solid rgba(201, 145, 69, 0.42);
  border-bottom: 1px solid rgba(201, 145, 69, 0.42);
  padding: 14px 0;
}

.consultation-promises p {
  display: flex;
  gap: 17px;
  align-items: baseline;
  margin: 0;
  padding: 9px 0;
  color: #c9c2b9;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.4;
}

.consultation-promises span {
  flex: 0 0 auto;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.consultation .consultation-copy > .consultation-email-fallback {
  margin: 0 0 19px;
  color: #9f9991;
  font-size: 14px;
  line-height: 1.6;
}

.consultation-email-fallback a,
.text-link {
  border-bottom: 1px solid rgba(201, 145, 69, 0.62);
  color: var(--gold-light);
  transition: border-color 180ms ease, color 180ms ease;
}

.consultation-email-fallback a:hover,
.consultation-email-fallback a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  border-color: var(--paper);
  color: var(--paper);
}

.consultation .signoff {
  margin-top: 0;
}

.consultation-form-card {
  position: relative;
  width: 100%;
  max-width: 700px;
  justify-self: end;
  border: 1px solid rgba(201, 145, 69, 0.48);
  padding: clamp(29px, 4vw, 49px);
  background:
    linear-gradient(145deg, rgba(213, 162, 87, 0.055), transparent 38%),
    rgba(10, 11, 10, 0.96);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.consultation-form-card::before,
.consultation-form-card::after {
  position: absolute;
  width: 30px;
  height: 30px;
  content: "";
  pointer-events: none;
}

.consultation-form-card::before {
  top: 12px;
  left: 12px;
  border-top: 1px solid rgba(201, 145, 69, 0.55);
  border-left: 1px solid rgba(201, 145, 69, 0.55);
}

.consultation-form-card::after {
  right: 12px;
  bottom: 12px;
  border-right: 1px solid rgba(201, 145, 69, 0.55);
  border-bottom: 1px solid rgba(201, 145, 69, 0.55);
}

.form-kicker {
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.consultation-form-card h3 {
  margin-bottom: 11px;
  color: #e1d9ce;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.08;
}

.form-intro {
  margin-bottom: 29px;
  color: #99938b;
  font-size: 14px;
  line-height: 1.6;
}

.form-intro > span:not(.sr-only),
.form-field label span,
.form-consent span span {
  color: var(--gold-light);
}

.consultation-form {
  display: grid;
  gap: 19px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label {
  color: #cbc4bb;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(201, 145, 69, 0.34);
  border-radius: 0;
  padding: 12px 14px;
  background: rgba(3, 4, 3, 0.68);
  color: var(--paper);
  color-scheme: dark;
  font: inherit;
  font-size: 16px;
  line-height: 1.45;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.form-field textarea {
  min-height: 132px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #716c65;
  opacity: 1;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: rgba(201, 145, 69, 0.62);
}

.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible,
.form-consent input:focus-visible {
  outline: 0;
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(201, 145, 69, 0.16);
}

.form-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 11px;
  align-items: start;
  color: #918b83;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.55;
}

.form-consent input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--gold);
}

.form-status {
  min-height: 0;
  margin: -3px 0 0;
  color: #b9c9ac;
  font-size: 13px;
  line-height: 1.55;
}

.form-status:empty {
  display: none;
}

.form-status.is-error {
  color: #e1a99f;
}

.form-submit {
  width: 100%;
  margin-top: 2px;
  border: 0;
  cursor: pointer;
}

.form-submit:disabled {
  cursor: not-allowed;
  filter: grayscale(0.45);
  opacity: 0.58;
  transform: none;
}

.consultation-success {
  display: grid;
  min-height: 520px;
  align-content: center;
  justify-items: center;
  padding: 30px;
  text-align: center;
}

.consultation-success[hidden] {
  display: none;
}

.success-mark {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  margin-bottom: 26px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 30px;
}

.consultation-success p:not(.form-kicker) {
  max-width: 480px;
  margin-bottom: 25px;
  color: #aaa49c;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.7;
}

.text-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.consultation-submit-frame {
  display: none;
}

@media (max-width: 980px) {
  .consultation {
    padding-block: 78px;
    background-position: 30% center;
  }

  .consultation::after {
    background: linear-gradient(180deg, rgba(5, 6, 5, 0.64), rgba(5, 6, 5, 0.96) 52%);
  }

  .consultation-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .consultation-copy {
    width: min(100%, 650px);
  }

  .consultation-form-card {
    max-width: none;
    justify-self: stretch;
  }
}

@media (max-width: 580px) {
  .consultation {
    min-height: 0;
    padding-block: 62px;
    background-position: 36% center;
  }

  .consultation-inner {
    min-height: 0;
    gap: 39px;
  }

  .consultation-copy {
    width: 100%;
    padding: 0;
  }

  .consultation h2 {
    font-size: 42px;
  }

  .consultation-copy > p:not(.eyebrow):not(.signoff):not(.consultation-email-fallback):not(.complimentary-note) {
    font-size: 17px;
  }

  .consultation-form-card {
    padding: 31px 21px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    min-height: 52px;
    font-size: 16px;
  }

  .consultation-success {
    min-height: 470px;
    padding-inline: 9px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* About page */

.nav-current {
  color: var(--gold-light) !important;
}

.footer-link {
  color: #b8a78e;
  transition: color 180ms ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--gold-light);
}

.about-page {
  background: #080908;
}

.about-header {
  background: linear-gradient(180deg, rgba(3, 4, 3, 0.98), rgba(3, 4, 3, 0.18));
}

.about-hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
  background:
    radial-gradient(circle at 74% 40%, rgba(184, 127, 55, 0.12), transparent 23%),
    radial-gradient(circle at 18% 78%, rgba(104, 75, 38, 0.09), transparent 29%),
    linear-gradient(135deg, #080908 0%, #0d0e0d 52%, #070807 100%);
}

.about-hero::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 68px;
  background: linear-gradient(transparent, var(--gold));
  content: "";
}

.about-orbit {
  position: absolute;
  border: 1px solid rgba(201, 145, 69, 0.11);
  border-radius: 50%;
  pointer-events: none;
}

.about-orbit-one {
  top: 130px;
  right: 4vw;
  width: 470px;
  height: 470px;
}

.about-orbit-two {
  top: 225px;
  right: 12vw;
  width: 280px;
  height: 280px;
}

.about-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.7fr);
  gap: clamp(56px, 8vw, 130px);
  align-items: center;
  min-height: 820px;
  padding-top: 138px;
  padding-bottom: 96px;
}

.about-hero-copy {
  max-width: 700px;
}

.about-hero h1 {
  max-width: 680px;
  margin-bottom: 30px;
  font-size: clamp(58px, 6vw, 88px);
  line-height: 0.95;
}

.about-hero h1 em,
.about-chapter h2 em,
.about-for-you h2 em,
.about-cta h2 em {
  display: block;
  color: var(--gold);
  font-style: italic;
}

.about-hero-copy > p:not(.eyebrow) {
  max-width: 630px;
  color: #b7b2aa;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.72;
}

.about-hero-copy .about-lede {
  color: #d8d0c5;
  font-size: 22px;
  line-height: 1.62;
}

.about-hero-note {
  position: relative;
  margin-top: 28px;
  margin-bottom: 0;
  padding-left: 23px;
}

.about-hero-note::before {
  position: absolute;
  top: 0.4em;
  bottom: 0.42em;
  left: 0;
  width: 1px;
  background: var(--gold);
  content: "";
}

.about-scroll {
  position: absolute;
  z-index: 2;
  bottom: 29px;
  left: 50%;
  display: flex;
  gap: 12px;
  align-items: center;
  color: #948d84;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.image-placeholder {
  position: relative;
  margin: 0;
}

.about-photo-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 145, 69, 0.46);
  background: #111210;
}

.about-photo-frame::after {
  position: absolute;
  inset: 0;
  border: 11px solid rgba(7, 8, 7, 0.08);
  box-shadow: inset 0 0 55px rgba(4, 5, 4, 0.18);
  content: "";
  pointer-events: none;
}

.about-photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-placeholder .about-photo-frame img {
  object-position: center 48%;
}

.bakery-photo-frame img {
  object-position: center 48%;
}

.clues-photo-frame img {
  object-position: center;
}

.process-photo-frame img {
  object-position: center;
}

.placeholder-frame {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(201, 145, 69, 0.46);
  padding: clamp(24px, 3vw, 42px);
  background:
    linear-gradient(145deg, rgba(213, 162, 87, 0.08), transparent 45%),
    repeating-linear-gradient(135deg, transparent 0, transparent 22px, rgba(255, 255, 255, 0.018) 23px, rgba(255, 255, 255, 0.018) 24px),
    #111210;
}

.placeholder-frame::before,
.placeholder-frame::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.placeholder-frame::before {
  top: 24px;
  right: 24px;
  width: 34px;
  height: 34px;
  border-top: 1px solid rgba(201, 145, 69, 0.7);
  border-right: 1px solid rgba(201, 145, 69, 0.7);
}

.placeholder-frame::after {
  inset: 12px;
  border: 1px solid rgba(231, 224, 214, 0.06);
}

.placeholder-kicker,
.placeholder-title {
  position: relative;
  z-index: 1;
}

.placeholder-kicker {
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.placeholder-title {
  max-width: 310px;
  color: #c9c1b6;
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.12;
}

.image-placeholder figcaption {
  margin-top: 11px;
  color: #746f68;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.portrait-placeholder {
  width: min(100%, 410px);
  justify-self: end;
}

.portrait-placeholder .placeholder-frame,
.portrait-placeholder .about-photo-frame {
  min-height: 535px;
  height: 535px;
}

.portrait-placeholder::before {
  position: absolute;
  z-index: -1;
  top: -19px;
  right: -19px;
  width: 58%;
  height: 58%;
  border-top: 1px solid rgba(201, 145, 69, 0.3);
  border-right: 1px solid rgba(201, 145, 69, 0.3);
  content: "";
}

.about-chapter {
  padding: clamp(90px, 10vw, 150px) 0;
  background:
    radial-gradient(circle at 11% 52%, rgba(141, 96, 41, 0.055), transparent 24%),
    #0a0b0a;
}

.chapter-deep {
  border-top: 1px solid rgba(201, 145, 69, 0.22);
  background:
    radial-gradient(circle at 84% 22%, rgba(141, 96, 41, 0.08), transparent 22%),
    #070807;
}

.chapter-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.83fr);
  gap: clamp(70px, 10vw, 155px);
  align-items: center;
}

.chapter-grid-image-first {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
}

.chapter-copy {
  max-width: 620px;
}

.chapter-number {
  margin-bottom: 19px;
  color: var(--gold-light) !important;
  font-family: var(--sans) !important;
  font-size: 11px !important;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.chapter-copy h2,
.craft-intro h2 {
  margin-bottom: 31px;
  font-size: clamp(42px, 4.7vw, 65px);
  line-height: 0.99;
}

.chapter-copy > p:not(.chapter-number):not(.chapter-aside):not(.chapter-close),
.craft-copy p,
.craft-detail p,
.for-you-copy > p {
  color: #aaa69f;
  font-size: 16px;
  line-height: 1.82;
}

.chapter-copy > p:last-child {
  margin-bottom: 0;
}

.chapter-aside {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 21px;
  font-style: italic;
  line-height: 1.5;
}

.chapter-close,
.craft-copy .chapter-close,
.for-you-copy > .chapter-close {
  margin-top: 23px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(24px, 1.8vw, 28px);
  font-style: italic;
  line-height: 1.4;
}

.landscape-placeholder .placeholder-frame,
.landscape-placeholder .about-photo-frame {
  min-height: 510px;
  height: 510px;
}

.tall-placeholder {
  width: min(100%, 450px);
  justify-self: end;
}

.tall-placeholder .placeholder-frame,
.tall-placeholder .about-photo-frame {
  min-height: 690px;
  height: 690px;
}

.story-beats {
  margin: 30px 0 33px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 25px 0 21px;
}

.story-beats p {
  margin: 0;
  color: #d0c8bd;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.65;
}

.story-beats p::before {
  margin-right: 12px;
  color: var(--gold);
  content: "✦";
  font-size: 9px;
  vertical-align: 0.25em;
}

.about-quote {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: clamp(76px, 9vw, 125px) 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(174, 119, 47, 0.12), transparent 36%),
    #0b0c0b;
  text-align: center;
}

.about-quote .container {
  position: relative;
}

.quote-mark {
  position: absolute;
  top: -66px;
  left: 50%;
  color: rgba(201, 145, 69, 0.12);
  font-family: var(--serif);
  font-size: 240px;
  line-height: 1;
  transform: translateX(-50%);
}

.about-quote blockquote {
  position: relative;
  margin: 0 auto;
  color: #d7d0c6;
  font-family: var(--serif);
  font-size: clamp(35px, 5vw, 63px);
  line-height: 1.16;
}

.about-quote blockquote em {
  color: var(--gold);
}

.craft-chapter {
  background:
    radial-gradient(circle at 67% 43%, rgba(122, 87, 38, 0.08), transparent 30%),
    linear-gradient(135deg, #090a09, #0c0d0c);
}

.craft-intro {
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: clamp(60px, 9vw, 140px);
  align-items: end;
  margin-bottom: 68px;
}

.craft-intro h2,
.craft-intro p:last-child {
  margin-bottom: 0;
}

.craft-copy {
  padding-bottom: 4px;
}

.craft-body {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.72fr);
  gap: clamp(55px, 8vw, 120px);
  align-items: center;
}

.wide-placeholder .placeholder-frame,
.wide-placeholder .about-photo-frame {
  min-height: 470px;
  height: 470px;
}

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

.about-for-you {
  border-top: 1px solid rgba(201, 145, 69, 0.2);
  padding: clamp(90px, 10vw, 145px) 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 5, 0.88), rgba(5, 6, 5, 0.97)),
    url("assets/letter-still-life.png") center / cover;
}

.for-you-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(75px, 11vw, 170px);
}

.for-you-heading h2 {
  margin-bottom: 0;
  font-size: clamp(46px, 5vw, 69px);
  line-height: 0.98;
}

.for-you-copy {
  max-width: 590px;
}

.for-you-copy blockquote {
  position: relative;
  margin: 23px 0 29px;
  border-left: 1px solid var(--gold);
  padding: 3px 0 3px 27px;
  color: #ddd5ca;
  font-family: var(--serif);
  font-size: clamp(23px, 2.5vw, 31px);
  font-style: italic;
  line-height: 1.4;
}

.about-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(95px, 11vw, 155px) 0 clamp(85px, 10vw, 135px);
  background: #080908;
  text-align: center;
}

.about-cta-glow {
  position: absolute;
  top: -130px;
  left: 50%;
  width: 600px;
  height: 320px;
  border-radius: 50%;
  background: rgba(176, 121, 48, 0.1);
  filter: blur(70px);
  transform: translateX(-50%);
}

.about-cta-inner {
  position: relative;
  max-width: 820px;
}

.about-cta h2 {
  margin-bottom: 25px;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.98;
}

.about-cta-inner > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 auto 31px;
  color: #aaa69f;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.72;
}

.ira-signature {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 39px;
}

.ira-signature span {
  color: #918a81;
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
}

.ira-signature strong {
  margin: -2px 0 2px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 37px;
  font-style: italic;
  font-weight: 400;
}

.ira-signature small {
  color: #77716a;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .about-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
    gap: 58px;
  }

  .about-hero h1 {
    font-size: clamp(56px, 7vw, 75px);
  }

  .chapter-grid,
  .chapter-grid-image-first {
    gap: 65px;
  }

  .craft-body {
    gap: 60px;
  }
}

@media (max-width: 900px) {
  .about-header {
    background: #060706;
  }

  .about-hero {
    min-height: auto;
  }

  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 58px;
    min-height: auto;
    padding-top: 82px;
    padding-bottom: 110px;
  }

  .about-hero-copy,
  .chapter-copy,
  .for-you-copy {
    max-width: none;
  }

  .portrait-placeholder {
    width: min(78%, 470px);
    justify-self: center;
  }

  .portrait-placeholder .placeholder-frame,
  .portrait-placeholder .about-photo-frame {
    min-height: 560px;
    height: 560px;
  }

  .chapter-grid,
  .chapter-grid-image-first,
  .craft-intro,
  .craft-body,
  .for-you-grid {
    grid-template-columns: 1fr;
  }

  .chapter-grid-image-first .image-placeholder {
    order: 2;
  }

  .landscape-placeholder {
    width: min(84%, 600px);
    justify-self: center;
  }

  .landscape-placeholder .placeholder-frame,
  .landscape-placeholder .about-photo-frame {
    min-height: 470px;
    height: 470px;
  }

  .tall-placeholder {
    width: min(78%, 480px);
    justify-self: center;
  }

  .tall-placeholder .placeholder-frame,
  .tall-placeholder .about-photo-frame {
    min-height: 620px;
    height: 620px;
  }

  .craft-intro {
    gap: 25px;
    margin-bottom: 53px;
  }

  .craft-body {
    gap: 42px;
  }

  .for-you-grid {
    gap: 42px;
  }

  .for-you-heading {
    max-width: 620px;
  }

  .site-footer {
    flex-wrap: wrap;
  }
}

@media (max-width: 580px) {
  .about-header .main-nav a {
    display: inline;
  }

  .about-header .main-nav a:nth-child(4),
  .about-header .main-nav a:nth-child(5) {
    display: none;
  }

  .about-hero-grid {
    padding-top: 52px;
    padding-bottom: 92px;
  }

  .about-hero h1 {
    font-size: clamp(44px, 13.5vw, 50px);
    line-height: 0.98;
  }

  .about-hero-copy .about-lede {
    font-size: 20px;
    line-height: 1.68;
  }

  .about-hero-copy > p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.7;
  }

  .portrait-placeholder,
  .landscape-placeholder,
  .tall-placeholder {
    width: 100%;
  }

  .portrait-placeholder .placeholder-frame,
  .portrait-placeholder .about-photo-frame,
  .landscape-placeholder .placeholder-frame,
  .landscape-placeholder .about-photo-frame,
  .tall-placeholder .placeholder-frame,
  .tall-placeholder .about-photo-frame,
  .wide-placeholder .placeholder-frame,
  .wide-placeholder .about-photo-frame {
    min-height: 0;
    height: auto;
  }

  .portrait-placeholder .placeholder-frame,
  .portrait-placeholder .about-photo-frame {
    aspect-ratio: 2 / 3;
  }

  .landscape-placeholder .placeholder-frame,
  .landscape-placeholder .about-photo-frame {
    aspect-ratio: 3 / 4;
  }

  .tall-placeholder .placeholder-frame,
  .tall-placeholder .about-photo-frame {
    aspect-ratio: 1003 / 1568;
  }

  .wide-placeholder .placeholder-frame,
  .wide-placeholder .about-photo-frame {
    aspect-ratio: 3 / 2;
  }

  .portrait-placeholder::before {
    top: -10px;
    right: -10px;
  }

  .about-chapter {
    padding-block: 68px;
  }

  .chapter-grid,
  .chapter-grid-image-first {
    gap: 50px;
  }

  .chapter-copy h2,
  .craft-intro h2 {
    font-size: clamp(38px, 11.5vw, 43px);
    line-height: 1.04;
  }

  .chapter-copy > p:not(.chapter-number):not(.chapter-aside):not(.chapter-close),
  .craft-copy p,
  .craft-detail p,
  .for-you-copy > p {
    line-height: 1.72;
  }

  .story-beats p {
    font-size: 18px;
  }

  .about-quote blockquote br {
    display: none;
  }

  .about-quote blockquote {
    font-size: clamp(31px, 9.5vw, 35px);
    line-height: 1.2;
  }

  .about-for-you {
    padding-block: 68px;
  }

  .for-you-heading h2,
  .about-cta h2 {
    font-size: clamp(40px, 12vw, 46px);
    line-height: 1.03;
  }

  .about-cta {
    padding: 76px 0 72px;
  }

  .about-cta-inner > p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.7;
  }

  .about-cta .button {
    width: 100%;
  }

  .ira-signature small {
    max-width: 260px;
    line-height: 1.6;
  }
}

/* Shared consultation dialog */

.consultation .consultation-inner {
  grid-template-columns: minmax(0, 610px);
  justify-content: end;
}

.consultation .consultation-copy {
  width: 100%;
}

consultation-inquiry {
  display: block;
  max-width: 520px;
}

consultation-inquiry[compact] {
  display: inline-flex;
  max-width: none;
}

consultation-inquiry[full] {
  width: 100%;
  max-width: none;
}

consultation-inquiry[full] .button {
  width: 100%;
}

.header-consultation {
  justify-self: end;
}

.complimentary-note {
  max-width: 520px;
  margin: 13px 0 0;
  color: #a9a39b;
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  line-height: 1.55;
}

.hero-content .complimentary-note {
  max-width: 470px;
  color: #b8b2aa;
}

.offer-panel .complimentary-note {
  margin-inline: auto;
  text-align: center;
}

.consultation .complimentary-note {
  margin: 13px 0 18px;
  color: #b7b1a8;
}

.about-cta .complimentary-note {
  max-width: 560px;
  margin: 15px auto 0;
  color: #aaa49c;
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  line-height: 1.55;
}

.about-cta consultation-inquiry {
  margin-inline: auto;
}

.consultation-form-card .form-complimentary-note {
  max-width: none;
  margin: -13px 0 27px;
  border-left: 1px solid rgba(201, 145, 69, 0.58);
  padding-left: 15px;
  color: #b8b1a8;
  font-size: 16px;
  text-align: left;
}

body.consultation-dialog-open {
  overflow: hidden;
}

.consultation-dialog {
  width: min(760px, calc(100% - 32px));
  max-width: none;
  max-height: none;
  margin: auto;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--paper);
  overflow: visible;
}

.consultation-dialog:not([open]) {
  display: none;
}

.consultation-dialog::backdrop {
  background: rgba(2, 3, 2, 0.86);
  backdrop-filter: blur(8px);
}

.consultation-dialog-shell {
  position: relative;
  max-height: calc(100vh - 32px);
  max-height: calc(100dvh - 32px);
  overflow: auto;
  overscroll-behavior: contain;
  scrollbar-color: var(--gold-dark) #0a0b0a;
}

.consultation-dialog .consultation-form-card {
  max-width: none;
  justify-self: auto;
}

.consultation-dialog-close {
  position: absolute;
  z-index: 4;
  top: 13px;
  right: 13px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(201, 145, 69, 0.42);
  padding: 0;
  background: rgba(6, 7, 6, 0.88);
  color: var(--gold-light);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.consultation-dialog-close:hover,
.consultation-dialog-close:focus-visible {
  border-color: var(--gold-light);
  background: var(--gold);
  color: var(--ink);
  outline: 0;
}

.consultation-dialog-close:disabled {
  cursor: wait;
  opacity: 0.45;
}

.consultation-form-card h2 {
  max-width: calc(100% - 45px);
  margin-bottom: 11px;
  color: #e1d9ce;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.08;
}

.dialog-email-fallback {
  margin: 20px 0 0;
  color: #918b83;
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
}

.dialog-email-fallback a {
  border-bottom: 1px solid rgba(201, 145, 69, 0.62);
  color: var(--gold-light);
}

.dialog-email-fallback a:hover,
.dialog-email-fallback a:focus-visible {
  border-color: var(--paper);
  color: var(--paper);
}

.consultation-success .success-close {
  width: auto;
  min-width: 170px;
}

@media (max-width: 980px) {
  .consultation .consultation-inner {
    grid-template-columns: minmax(0, 650px);
    justify-content: center;
  }
}

@media (max-width: 1280px) {
  .header-consultation {
    display: none;
  }
}

@media (max-width: 580px) {
  .consultation-dialog {
    width: calc(100% - 12px);
  }

  .consultation-dialog-shell {
    max-height: calc(100vh - 12px);
    max-height: calc(100dvh - 12px);
  }

  .consultation-dialog-close {
    top: 8px;
    right: 8px;
  }

  .consultation-form-card h2 {
    max-width: calc(100% - 38px);
    font-size: 32px;
  }

  .consultation-success .success-close {
    width: 100%;
  }
}
