/* Email actions retain the typography and layout of the surrounding links. */
.email-copy { padding: 0; border: 0; background: none; color: inherit; font: inherit; letter-spacing: inherit; text-align: inherit; text-decoration: none; cursor: pointer; vertical-align: baseline; }
.email-copy .mud-icon-root { width: 1em; height: 1em; font-size: 18px; flex-shrink: 0; }

:root {
  --ink: #253d32;
  --text: #2e3932;
  --muted: #707970;
  --paper: #f7f6f2;
  --sage: #e8ece2;
  --line: #d8ddd3;
  --lime: #d6dfb0;
  --font: "Pretendard", sans-serif;
}

/* Email notifications use the same palette and typography as the site. */
.mud-snackbar.email-copy-toast {
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(420px, calc(100vw - 32px));
  min-width: 0;
  max-width: calc(100vw - 32px);
  padding: 16px 14px 16px 18px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid #7e907a70;
  border-radius: 10px;
  box-shadow: 0 12px 36px #14251c25;
  font-family: var(--font);
  cursor: default;
}
.email-copy-toast .mud-snackbar-icon {
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  height: 34px;
  margin: 0;
  padding: 0;
  color: var(--lime);
  background: #d6dfb010;
  border: 1px solid #d6dfb030;
  border-radius: 50%;
}
.email-copy-toast .mud-snackbar-icon .mud-icon-root { width: 19px; height: 19px; }
.email-copy-toast .mud-snackbar-content-message { flex: 1; min-width: 0; padding: 0; }
.email-copy-toast .mud-snackbar-content-action { margin: 0; padding: 0; }
.email-copy-notice-title { display: block; font-size: 13px; font-weight: 500; line-height: 1.55; letter-spacing: -.02em; word-break: keep-all; }
.email-copy-notice-address { display: block; margin-top: 3px; color: var(--lime); font-size: 12px; font-weight: 400; line-height: 1.5; letter-spacing: .01em; overflow-wrap: anywhere; }
.email-copy-notice-hint { display: block; margin-top: 5px; font-size: 11px; font-weight: 400; line-height: 1.5; color: #647069; }
.email-copy-toast .mud-snackbar-close-button { width: 34px; height: 34px; color: #d8e1d0; }
.email-copy-toast .mud-snackbar-close-button:hover { background: #e8ece218; }
.email-copy-toast .mud-snackbar-close-button:focus-visible { outline: 2px solid var(--lime); outline-offset: 2px; }
.mud-snackbar.email-copy-toast--warning { background: var(--paper); color: var(--ink); border-color: #c6c3b4; }
.email-copy-toast--warning .mud-snackbar-icon { color: #786c4e; background: #ece8dc; border-color: #d8d1be; }
.email-copy-toast--warning .email-copy-notice-address { color: var(--ink); }
.email-copy-toast--warning .mud-snackbar-close-button { color: var(--muted); }
.email-copy-toast--warning .mud-snackbar-close-button:hover { background: var(--sage); }
.email-copy-toast--warning .mud-snackbar-close-button:focus-visible { outline-color: var(--ink); }
@media (prefers-reduced-motion: reduce) {
  .mud-snackbar.email-copy-toast { animation: none !important; }
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: var(--lime);
  color: var(--ink);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  word-break: keep-all;
  overflow-wrap: break-word;
}
p {
  word-break: keep-all;
  overflow-wrap: break-word;
}
h1 {
  font-size: clamp(42px, 4.55vw, 70px);
  line-height: 1.24;
  font-weight: 530;
  letter-spacing: -0.055em;
}
h2 {
  font-size: clamp(30px, 3.1vw, 46px);
  line-height: 1.38;
  letter-spacing: -0.045em;
  font-weight: 520;
}
h3 {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 550;
  letter-spacing: -0.03em;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #7c966b;
  outline-offset: 5px;
}
main:focus {
  outline: none;
}
.page-width {
  width: min(1280px, calc(100% - 112px));
  margin-inline: auto;
}
.section-space {
  padding-block: 112px;
}
.eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.17em;
  line-height: 1.7;
}
.section-label {
  margin-bottom: 26px;
  color: #5b7060;
}
.muted {
  color: #7a8479;
}
.body-copy {
  font-size: 16px;
  line-height: 1.95;
  color: #687268;
}
.lead {
  font-size: 19px;
  line-height: 1.85;
  color: #647064;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 550;
  padding-block: 12px;
  border-bottom: 1px solid #a1af9c;
  transition:
    gap 0.2s,
    color 0.2s;
}
.text-link:hover {
  gap: 40px;
  color: #658245;
}
.text-link span {
  font-size: 20px;
}
.large-button.mud-button-root {
  min-height: 54px;
  padding: 14px 24px;
  font-size: 14px;
  letter-spacing: 0;
}
.large-button .mud-button-icon-end {
  margin-left: 24px;
}
.mud-button-root {
  border-radius: 2px;
  text-transform: none;
}
.mud-button-root:hover {
  box-shadow: none;
}
.button-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.soft-section {
  background: #edf0e8;
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 1600;
  background: var(--ink);
  color: white;
  padding: 16px;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  height: 90px;
  display: flex;
  align-items: center;
  padding-inline: 56px;
  gap: 36px;
  border-bottom: 1px solid #e2e5dc;
  background: rgba(247, 246, 242, 0.97);
  position: sticky;
  top: 0;
  z-index: 1100;
  backdrop-filter: blur(12px);
}
.wordmark {
  display: inline-flex;
  align-items: center;
  font-size: 31px;
  letter-spacing: -1.7px;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
}
.brand-dot {
  color: #81956e;
}
.brand-symbol {
  width: 28px;
  height: 30px;
  margin-right: 11px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  transform: skewY(-13deg);
}
.brand-symbol i {
  height: 5px;
  width: 25px;
  display: block;
  background: currentColor;
}
.brand-symbol i:nth-child(2) {
  width: 18px;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 500;
}
.desktop-nav a,
.header-cta {
  padding-block: 12px;
  transition: color 0.2s;
  position: relative;
}
.desktop-nav a:after,
.header-cta:after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.2s;
}
.desktop-nav a:hover:after,
.desktop-nav a.active:after,
.header-cta:hover:after {
  width: 100%;
}
.header-cta {
  flex-shrink: 0;
  white-space: nowrap;
}
.mobile-menu-toggle.mud-icon-button {
  display: none;
}
.mobile-nav {
  display: none;
}
.hero {
  min-height: 640px;
  height: min(780px, calc(100svh - 90px));
  position: relative;
  isolation: isolate;
  color: #faf9f1;
  overflow: hidden;
}
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero-image {
  object-position: center 53%;
  animation: hero-settle 1.5s ease-out;
}
.hero-shade {
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(10, 20, 16, 0.76),
      rgba(15, 22, 18, 0.43) 46%,
      rgba(18, 25, 18, 0.02) 77%
    ),
    linear-gradient(0deg, rgba(13, 22, 17, 0.55), transparent 30%);
}
.hero-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 2px;
  padding-bottom: 65px;
  animation: hero-in 0.9s ease-out;
}
.hero-content .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  color: #ececd9;
  margin-bottom: 35px;
}
.tiny-line {
  display: inline-block;
  width: 25px;
  height: 1px;
  background: #d6dfb0;
}
.hero h1 {
  font-size: clamp(48px, 4.8vw, 74px);
  font-weight: 430;
  line-height: 1.28;
  letter-spacing: -0.052em;
}
.hero-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #e0e3d9;
  margin-top: 28px;
  font-weight: 350;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 39px;
}
.cream-button.mud-button-root {
  color: var(--ink);
  background: #f0f0e4;
}
.cream-button.mud-button-root:hover {
  background: #d6dfb0;
}
.hero-secondary {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  min-height: 44px;
}
.hero-secondary span {
  font-size: 18px;
}
.hero-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ffffff3b;
  padding-top: 22px;
  font-size: 9px;
  letter-spacing: 0.13em;
  color: #e3e5da;
}
.hero-bottom a {
  display: flex;
  align-items: center;
  gap: 22px;
}
.hero-bottom a span {
  font-size: 22px;
}
.hero-side-note {
  position: absolute;
  right: 28px;
  top: 50%;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
  font-size: 8px;
  letter-spacing: 0.2em;
  color: #eee;
}
.intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  column-gap: 100px;
  row-gap: 65px;
}
.intro-title h2 {
  font-size: clamp(28px, 2.8vw, 40px);
}
.intro-copy {
  padding-top: 44px;
}
.intro-copy > p:first-child {
  font-size: 22px;
  line-height: 1.65;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.intro-copy .text-link {
  margin-top: 22px;
}
.experience-stats {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  padding-top: 40px;
}
.experience-stats > div {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  padding-left: 32px;
  gap: 12px;
}
.experience-stats > div:first-child {
  padding-left: 0;
}
.experience-stats > div:last-child {
  border: 0;
}
.stat-number {
  font-family: Georgia, serif;
  font-size: 94px;
  line-height: 1.15;
  letter-spacing: -5px;
}
.stat-number > span {
  font-family: var(--font);
  font-size: 40px;
  font-weight: 250;
  margin-left: 5px;
  vertical-align: top;
  position: relative;
  top: 12px;
}
.experience-stats > div > span:last-child {
  font-size: 13px;
  color: #6d786b;
}
.stat-statement > span:first-child {
  font-family: Georgia, serif;
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -1px;
  padding-top: 8px;
}
.stat-statement em {
  color: #829175;
}
.suite-section {
  background: var(--sage);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 45px;
  margin-bottom: 48px;
}
.section-heading > p {
  font-size: 15px;
  line-height: 1.85;
  color: #6b746b;
  max-width: 420px;
  padding-bottom: 6px;
}
.serif-heading {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5.2vw, 76px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.1;
}
.serif-heading em {
  font-weight: 400;
  color: #7a8e6e;
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.product-visual {
  height: 380px;
  position: relative;
  display: block;
  overflow: hidden;
}
.access-visual {
  background: radial-gradient(
    ellipse at 62% 60%,
    #54735b 0%,
    #2c493a 47%,
    #203a2d 90%
  );
  color: #d9e4d1;
}
.product-kicker {
  position: absolute;
  top: 24px;
  left: 26px;
  font-size: 9px;
  font-weight: 550;
  letter-spacing: 0.16em;
  z-index: 2;
}
.visual-caption {
  position: absolute;
  bottom: 25px;
  left: 26px;
  font-size: 9px;
  letter-spacing: 0.15em;
}
.round-arrow {
  position: absolute;
  right: 24px;
  bottom: 22px;
  border: 1px solid #ffffff50;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 19px;
  transition:
    transform 0.3s,
    background 0.3s;
}
.product-visual:hover .round-arrow {
  transform: rotate(45deg);
  background: #ffffff20;
}
.key-card {
  width: 235px;
  height: 148px;
  position: absolute;
  left: 50%;
  top: 49%;
  transform: translate(-50%, -50%) rotate(-18deg);
  border-radius: 9px;
  background: linear-gradient(120deg, #708768, #395139 65%, #597351);
  box-shadow:
    18px 35px 38px #0d1c2475,
    inset 1px 1px 0 #c4d8a944,
    inset -1px -1px 0 #162c20;
  color: #edf0cf;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.product-visual:hover .key-card {
  transform: translate(-50%, -53%) rotate(-11deg);
}
.key-brand {
  font-size: 17px;
  letter-spacing: -0.8px;
  line-height: 1;
}
.key-brand > span {
  font-size: 8px;
  vertical-align: top;
  margin-left: 2px;
}
.key-mark {
  position: absolute;
  top: 37px;
  right: 35px;
  font-family: Georgia, serif;
  font-size: 60px;
  font-style: italic;
  opacity: 0.22;
}
.key-card > div {
  display: flex;
  justify-content: space-between;
  align-items: end;
  font-size: 7px;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
.nfc-icon {
  font-size: 21px;
  transform: rotate(20deg);
}
.orbital-line {
  position: absolute;
  width: 530px;
  height: 190px;
  border: 1px solid #b3c19a26;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-32deg);
}
.orbit-two {
  width: 660px;
  height: 270px;
}
.epaper-visual {
  background: #d9d9cc;
  color: #465343;
  background-image:
    linear-gradient(120deg, #e8e9dc, transparent 60%),
    linear-gradient(25deg, transparent 70%, #b8bca985);
}
.coming-badge {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 8px;
  letter-spacing: 0.08em;
  border: 1px solid #8c9a8177;
  border-radius: 30px;
  padding: 6px 9px;
}
.epaper-visual .round-arrow {
  border-color: #74836b70;
}
.paper-scene {
  height: 100%;
  display: grid;
  place-items: center;
  perspective: 800px;
}
.paper-display {
  width: 240px;
  height: 220px;
  background: #ececde;
  border: 8px solid #e0e1d3;
  border-bottom-width: 12px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  padding: 19px 20px;
  box-shadow:
    2px 3px 0 #a4aa96,
    15px 27px 29px #7279635e,
    inset 0 0 0 1px #60695324;
  transform: rotate(-5deg) rotateY(-14deg);
  transition: transform 0.7s;
}
.product-visual:hover .paper-display {
  transform: rotate(-1deg) rotateY(0);
}
.paper-brand {
  font-size: 10px;
  letter-spacing: -0.4px;
  font-weight: 650;
}
.paper-title {
  font-family: Georgia, serif;
  font-size: 25px;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-block: 23px 18px;
}
.paper-title em {
  font-size: 23px;
}
.paper-rule {
  width: 100%;
  height: 1px;
  background: #9fa890;
  margin-bottom: 12px;
}
.paper-foot {
  font-size: 6px;
  letter-spacing: 0.12em;
  line-height: 1.6;
}
.product-description {
  padding: 25px 0 0;
}
.product-description .eyebrow {
  font-size: 8px;
  color: #65775b;
}
.product-description h3 {
  margin-top: 7px;
  font-size: 25px;
  letter-spacing: -0.04em;
}
.product-description p {
  font-size: 14px;
  color: #6c7568;
  line-height: 1.8;
  margin-top: 13px;
}
.product-description .text-link {
  margin-top: 18px;
  font-size: 12px;
}
.inline-status {
  font-family: var(--font);
  font-size: 10px;
  letter-spacing: 0;
  font-weight: 400;
  display: inline-block;
  margin-left: 7px;
  border: 1px solid #adb99e;
  border-radius: 20px;
  padding: 3px 9px;
  vertical-align: middle;
}
.expertise-section {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 110px;
}
.expertise-intro .body-copy {
  margin-top: 22px;
  font-size: 14px;
}
.expertise-intro .text-link {
  margin-top: 20px;
}
.expertise-monogram {
  height: 220px;
  position: relative;
  padding-top: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #d7dfcf;
  overflow: hidden;
}
.expertise-monogram > span {
  font-family: Georgia, serif;
  font-size: 200px;
  font-style: italic;
  line-height: 0.9;
}
.expertise-monogram > span:nth-child(2) {
  transform: translateY(-5px);
  color: #c0ccaf;
}
.expertise-monogram small {
  position: absolute;
  bottom: 0;
  left: 0;
  letter-spacing: 0.18em;
  font-size: 8px;
  color: #7c8b6e;
}
.expertise-panels.mud-expansion-panels {
  background: transparent;
  align-self: start;
  border-top: 1px solid var(--line);
}
.expertise-panels .mud-expand-panel {
  background: transparent;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}
.expertise-panels .mud-expand-panel:before {
  display: none;
}
.expertise-panels .mud-expand-panel-header {
  padding: 29px 0;
  min-height: 100px;
}
.expertise-panels .mud-expand-panel-header-content {
  align-items: center;
  gap: 25px;
}
.expertise-number {
  font-family: Georgia, serif;
  font-size: 17px;
  color: #829074;
}
.expertise-panels .eyebrow {
  font-size: 8px;
  color: #85917c;
  letter-spacing: 0.12em;
}
.expertise-panels h3 {
  font-size: 24px;
  margin-top: 4px;
}
.expertise-panels .mud-expand-panel-content {
  padding: 0 25px 28px 46px;
  font-size: 14px;
  line-height: 1.9;
  color: #6c766b;
}
.expertise-panels .mud-expand-panel.mud-panel-expanded {
  margin: 0;
}
.detail-tags {
  font-size: 10px;
  color: #7b8c6e;
  display: block;
  margin-top: 17px;
}
.field-banner {
  height: 410px;
  position: relative;
  isolation: isolate;
  color: white;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.field-banner img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 66%;
  z-index: -2;
}
.field-banner:after {
  content: "";
  position: absolute;
  inset: 0;
  background: #17291fcc;
  z-index: -1;
}
.field-banner .eyebrow {
  color: #bdcba8;
  margin-bottom: 23px;
}
.field-banner h2 {
  font-weight: 430;
  font-size: 42px;
  letter-spacing: -0.04em;
}
.field-banner p {
  margin-top: 21px;
  color: #d6decc;
  font-size: 14px;
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 57px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.partner-grid > div {
  height: 120px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px;
  text-align: center;
  color: #697360;
  transition:
    background 0.25s,
    color 0.25s;
}
.partner-grid > div:hover {
  background: #edf0e7;
  color: #263f31;
}
.partner-grid small {
  font-size: 7px;
  letter-spacing: 0.17em;
  line-height: 1.6;
}
.hotel-serif {
  font-family: Georgia, serif;
  font-size: 18px;
  letter-spacing: -0.05em;
}
.hotel-script {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 30px;
  letter-spacing: -0.06em;
}
.hotel-sans {
  font-size: 18px;
  letter-spacing: -0.065em;
  font-weight: 600;
}
.hotel-sans:last-child {
  font-size: 14px;
}
.spaced {
  letter-spacing: 0.2em;
}
.partner-note {
  text-align: right;
  font-size: 10px;
  color: #7d8776;
  margin-top: 16px;
}
.contact-banner {
  padding-block: 78px;
  background: var(--ink);
  color: #f2f4e8;
  position: relative;
  overflow: hidden;
}
.contact-banner:after {
  content: "e.";
  position: absolute;
  right: 25%;
  bottom: -105px;
  font-family: Georgia, serif;
  font-size: 420px;
  font-style: italic;
  line-height: 1;
  color: #ffffff04;
  pointer-events: none;
}
.contact-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.contact-banner .eyebrow {
  color: #bfcca6;
  margin-bottom: 24px;
  font-size: 9px;
}
.contact-banner h2 {
  font-size: 42px;
  font-weight: 420;
}
.contact-banner p {
  font-size: 15px;
  line-height: 1.9;
  color: #c7d1be;
  margin-bottom: 25px;
}
.contact-banner .large-button {
  color: #253d32;
}
.site-footer {
  padding-top: 60px;
  background: #f0f1e9;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.25fr 1.1fr 0.7fr 1.1fr;
  gap: 45px;
  padding-bottom: 54px;
}
.footer-wordmark {
  font-size: 29px;
}
.footer-top p {
  font-size: 12px;
  line-height: 1.9;
  color: #7b8576;
  margin-top: 22px;
}
.footer-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 12px;
}
.footer-group > .eyebrow {
  color: #809070;
  font-size: 8px;
  margin-bottom: 6px;
}
.footer-group :is(a, .email-copy) {
  display: flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
}
.footer-group :is(a, .email-copy):hover {
  text-decoration: underline;
}
.footer-group small {
  font-size: 9px;
  color: #7b8870;
  white-space: nowrap;
  flex-shrink: 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 9px;
  letter-spacing: 0.02em;
  color: #7c8773;
  border-top: 1px solid var(--line);
  padding-block: 23px;
}
.footer-bottom > span:nth-child(2) {
  letter-spacing: 0.14em;
  font-size: 8px;
}
#blazor-error-ui {
  background: #fff0d5;
  bottom: 0;
  padding: 16px;
  position: fixed;
  width: 100%;
  z-index: 2000;
  display: none;
  text-align: center;
}
#blazor-error-ui a {
  text-decoration: underline;
  margin-left: 15px;
}
.breadcrumb {
  display: inline-flex;
  gap: 20px;
  font-size: 12px;
  color: #7c8874;
  margin-bottom: 60px;
}
.breadcrumb span {
  color: #9ba591;
}
.detail-heading {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  align-items: center;
}
.detail-heading .lead {
  font-size: 16px;
  margin-top: 27px;
}
.detail-heading .button-row {
  margin-top: 35px;
}
.detail-heading h1 {
  font-size: 54px;
}
.access-detail-art {
  aspect-ratio: 0.9;
  background: var(--ink);
  color: #d6dfb0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 36px 20px;
  overflow: hidden;
  position: relative;
}
.access-detail-art:after {
  content: "";
  position: absolute;
  width: 140%;
  height: 55%;
  border: 1px solid #d6dfb040;
  border-radius: 50%;
  transform: rotate(-35deg);
  top: 25%;
}
.access-detail-art .eyebrow {
  font-size: 7px;
}
.access-detail-art > span:last-child {
  font-size: 7px;
  letter-spacing: 0.12em;
}
.big-m {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 180px;
  color: #b6c793;
  line-height: 1;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.feature-grid article {
  padding-top: 25px;
  border-top: 1px solid #c9d2bf;
}
.feature-number {
  display: block;
  font-size: 9px;
  letter-spacing: 0.12em;
  margin-bottom: 30px;
  color: #7d8e71;
}
.feature-grid .mud-icon-root {
  font-size: 34px;
  color: #668153;
  margin-bottom: 24px;
}
.feature-grid h3 {
  font-size: 20px;
  margin-bottom: 15px;
}
.feature-grid p {
  font-size: 14px;
  line-height: 1.9;
  color: #6e7a65;
}
.process-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.process-section .body-copy {
  margin-top: 25px;
}
.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.process-list li {
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.process-list li:first-child {
  border-top: 1px solid var(--line);
}
.process-list li > span {
  font-family: Georgia, serif;
  font-size: 20px;
  color: #8b9b7e;
}
.process-list h3 {
  font-size: 21px;
}
.process-list p {
  font-size: 13px;
  color: #75816c;
  margin-top: 7px;
}
.epaper-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}
.epaper-editorial h1 {
  font-size: 90px;
}
.status-label {
  display: flex;
  gap: 7px;
  align-items: center;
  font-size: 12px;
  margin-block: 26px;
  color: #6d7e5d;
}
.status-label > span {
  background: #829468;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.epaper-editorial h2 {
  font-size: 30px;
}
.epaper-editorial .body-copy {
  margin-block: 22px 30px;
  font-size: 14px;
}
.standalone-paper {
  aspect-ratio: 0.85;
  position: relative;
  display: grid;
  place-items: center;
}
.standalone-paper .paper-display {
  transform: rotate(-7deg) scale(1.3);
}
.company-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  margin-top: 45px;
  margin-bottom: 50px;
}
.company-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: 50% 55%;
  display: block;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  margin-top: 60px;
}
.values-grid article {
  border-top: 1px solid #ccd5c2;
  padding-top: 25px;
}
.values-grid article > span {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: #7d8e71;
  display: block;
  margin-bottom: 32px;
}
.values-grid h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
.values-grid p {
  font-size: 15px;
  line-height: 1.9;
  color: #73806a;
}
.contact-page {
  display: grid;
  grid-template-columns: 1fr 1.06fr;
  gap: 90px;
  align-items: start;
}
.contact-intro h1 {
  font-size: 50px;
}
.contact-intro .lead {
  font-size: 16px;
  margin-top: 27px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 29px;
  margin-top: 48px;
}
.contact-details > div {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.contact-details .eyebrow {
  font-size: 8px;
  color: #7f8e72;
  margin-bottom: 8px;
}
.contact-details :is(a, .email-copy) {
  font-size: 20px;
  letter-spacing: -0.02em;
  display: flex;
  gap: 25px;
}
.contact-details :is(a, .email-copy):hover {
  color: #78905f;
}
.contact-details :is(a, .email-copy) span {
  color: #8b9c78;
  font-size: 19px;
}
.contact-details small {
  font-size: 11px;
  color: #7a8770;
  margin-top: 7px;
}
.contact-footnote {
  font-size: 12px;
  color: #7b8870;
  line-height: 1.8;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 35px;
}
.inquiry-card {
  background: white;
  border: 1px solid #e0e5da;
  padding: 40px;
}
.inquiry-card > .eyebrow {
  font-size: 8px;
  color: #7d8d6f;
}
.inquiry-card h2 {
  font-size: 27px;
  margin-top: 10px;
}
.inquiry-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 28px;
}
.type-button.mud-button-root {
  padding: 10px 8px;
  border-color: #d9dfd1;
  color: #727e66;
  font-size: 13px;
}
.type-button.selected.mud-button-root {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}
.recipient-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 10px;
  color: #78846c;
  margin-block: 16px 30px;
}
.status-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #8d9f72;
  border-radius: 50%;
  margin-right: 3px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.full-width {
  grid-column: 1/-1;
}
.inquiry-card .mud-input-control {
  margin-top: 0;
}
.inquiry-card .mud-input,
.inquiry-card .mud-input-label {
  font-family: var(--font);
  font-size: 14px;
}
.inquiry-card .mud-input-outlined-border {
  border-color: #dce1d5;
}
.form-note {
  font-size: 11px;
  line-height: 1.8;
  color: #808a75;
  margin-block: 18px;
}
.form-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 4px;
}
.draft-panel {
  padding: 24px;
  background: #edf1e6;
  margin-top: 28px;
}
.draft-panel .eyebrow {
  font-size: 8px;
  color: #7d906e;
}
.draft-panel h3 {
  font-size: 19px;
  margin-block: 8px 18px;
}
.draft-panel > p {
  font-size: 12px;
  line-height: 1.8;
  margin-top: 5px;
  overflow-wrap: anywhere;
}
.draft-panel strong {
  margin-right: 8px;
  font-weight: 550;
}
.draft-panel details {
  margin-block: 18px;
}
.draft-panel summary {
  font-size: 12px;
  cursor: pointer;
  padding: 8px 0;
}
.draft-panel pre {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font: 12px/1.8 var(--font);
  padding: 12px;
  background: white;
  max-height: 320px;
  overflow: auto;
}
.draft-panel .button-row {
  gap: 8px;
}
.draft-panel .mud-button-root {
  font-size: 12px;
}
.prose-page {
  max-width: 840px;
}
.prose-page h1 {
  font-size: 48px;
}
.prose-page .lead {
  margin-top: 20px;
}
.prose-page h2 {
  font-size: 23px;
  margin-top: 40px;
  margin-bottom: 12px;
}
.prose-page p {
  font-size: 16px;
  line-height: 1.9;
  color: #6b7761;
}
.prose-page p a {
  text-decoration: underline;
}
.prose-page .text-link {
  margin-top: 30px;
}
.empty-page {
  padding-block: 150px;
  min-height: 60vh;
}
.empty-page h1 {
  font-size: 44px;
  margin-block: 25px;
}
.empty-page p {
  margin-bottom: 30px;
  color: #75836a;
}
@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes hero-settle {
  from {
    transform: scale(1.025);
  }
  to {
    transform: scale(1);
  }
}
@media (min-width: 1600px) {
  .site-header {
    padding-inline: max(56px, calc((100vw - 1420px) / 2));
  }
  .hero-content {
    padding-bottom: 70px;
  }
  .hero {
    max-height: 820px;
  }
}
@media (max-width: 1100px) {
  .page-width {
    width: calc(100% - 72px);
  }
  .site-header {
    padding-inline: 36px;
    gap: 24px;
  }
  .desktop-nav {
    gap: 22px;
    font-size: 12px;
  }
  .wordmark {
    font-size: 28px;
  }
  .intro {
    column-gap: 50px;
  }
  .expertise-section {
    gap: 60px;
  }
  .product-visual {
    height: 330px;
  }
  .footer-top {
    gap: 25px;
  }
  .contact-page {
    gap: 40px;
  }
  .inquiry-card {
    padding: 28px;
  }
  .contact-intro h1 {
    font-size: 44px;
  }
  .detail-heading {
    gap: 40px;
  }
  .detail-heading h1 {
    font-size: 46px;
  }
  .hotel-serif {
    font-size: 16px;
  }
  .hotel-sans {
    font-size: 16px;
  }
  .feature-grid {
    gap: 22px;
  }
  .standalone-paper .paper-display {
    transform: rotate(-7deg) scale(1.1);
  }
}
@media (max-width: 850px) {
  .section-space {
    padding-block: 80px;
  }
  .desktop-nav {
    display: none;
  }
  .site-header {
    height: 76px;
  }
  .header-cta {
    margin-left: auto !important;
  }
  .mobile-menu-toggle.mud-icon-button {
    display: inline-flex;
    color: var(--ink);
  }
  .mobile-nav {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 75px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 18px 36px 28px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 25px #1b302719;
  }
  .mobile-nav :is(a, .email-copy) {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }
  .hero {
    height: 680px;
    min-height: 0;
  }
  .hero h1 {
    font-size: 58px;
  }
  .hero-side-note {
    right: 15px;
  }
  .intro {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .intro-copy {
    padding-top: 38px;
  }
  .intro-title h2 {
    font-size: 30px;
  }
  .intro-copy > p:first-child {
    font-size: 20px;
  }
  .body-copy {
    font-size: 15px;
  }
  .experience-stats {
    grid-template-columns: 1fr 1fr;
    row-gap: 32px;
  }
  .experience-stats > div {
    padding-left: 30px;
  }
  .experience-stats > div:nth-child(odd) {
    padding-left: 0;
  }
  .experience-stats > div:nth-child(even) {
    border-right: 0;
  }
  .stat-number {
    font-size: 75px;
  }
  .stat-statement > span:first-child {
    font-size: 28px;
  }
  .section-heading {
    align-items: start;
    gap: 25px;
  }
  .section-heading > p {
    font-size: 13px;
  }
  .product-grid {
    gap: 24px;
  }
  .product-visual {
    height: 290px;
  }
  .key-card {
    width: 205px;
    height: 130px;
  }
  .paper-display {
    width: 205px;
    height: 198px;
    padding: 16px;
  }
  .paper-title {
    font-size: 22px;
    margin-block: 18px 13px;
  }
  .paper-title em {
    font-size: 20px;
  }
  .product-description h3 {
    font-size: 22px;
  }
  .inline-status {
    margin-left: 0;
  }
  .product-kicker {
    font-size: 7px;
    left: 20px;
  }
  .coming-badge {
    font-size: 7px;
    right: 14px;
    padding: 5px 7px;
    top: 42px;
  }
  .expertise-section {
    gap: 40px;
  }
  .expertise-panels h3 {
    font-size: 22px;
  }
  .expertise-intro h2 {
    font-size: 33px;
  }
  .expertise-monogram {
    height: 180px;
  }
  .expertise-monogram > span {
    font-size: 160px;
  }
  .partner-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .partner-grid > div:last-child {
    grid-column: 2;
  }
  .contact-banner h2 {
    font-size: 35px;
  }
  .contact-banner-inner {
    gap: 35px;
  }
  .contact-banner p {
    font-size: 13px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-bottom > span:nth-child(2) {
    display: none;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .detail-heading {
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
  }
  .detail-heading h1 {
    font-size: 38px;
  }
  .big-m {
    font-size: 140px;
  }
  .process-section {
    gap: 50px;
  }
  .epaper-editorial {
    gap: 50px;
  }
  .epaper-editorial h1 {
    font-size: 70px;
  }
  .epaper-editorial h2 {
    font-size: 26px;
  }
  .company-intro {
    gap: 50px;
  }
  .values-grid {
    gap: 28px;
  }
  .values-grid h3 {
    font-size: 20px;
  }
  .contact-page {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .contact-footnote {
    display: none;
  }
  .contact-intro h1 {
    font-size: 48px;
  }
  .inquiry-card {
    padding: 40px;
  }
  .contact-intro .lead {
    font-size: 17px;
  }
  .contact-details :is(a, .email-copy) {
    font-size: 19px;
  }
}
@media (max-width: 600px) {
  html {
    scroll-padding-top: 85px;
  }
  .page-width {
    width: calc(100% - 40px);
  }
  .section-space {
    padding-block: 64px;
  }
  .site-header {
    height: 70px;
    padding-inline: 20px;
    gap: 10px;
  }
  .wordmark {
    font-size: 27px;
  }
  .brand-symbol {
    width: 22px;
    margin-right: 8px;
    gap: 3px;
  }
  .brand-symbol i {
    width: 21px;
    height: 4px;
  }
  .brand-symbol i:nth-child(2) {
    width: 15px;
  }
  .mobile-menu-toggle.mud-icon-button {
    padding: 8px;
  }
  .mobile-nav {
    top: 69px;
    padding: 15px 24px 25px;
  }
  .hero {
    height: 650px;
    max-height: calc(100svh - 70px);
    min-height: 550px;
  }
  .hero-image {
    object-position: 58% 50%;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, #102016ba, #14251d6b),
      linear-gradient(0deg, #0c1b17a8, transparent 35%);
  }
  .hero-content {
    padding-bottom: 52px;
  }
  .hero-content .eyebrow {
    font-size: 8px;
    letter-spacing: 0.14em;
    margin-bottom: 30px;
    gap: 9px;
  }
  .tiny-line {
    width: 18px;
  }
  .hero h1 {
    font-size: 44px;
    line-height: 1.3;
    font-weight: 440;
  }
  .hero-content p {
    font-size: 13px;
    line-height: 1.9;
    margin-top: 25px;
  }
  .hero-actions {
    gap: 15px;
    align-items: start;
    flex-direction: column;
    margin-top: 29px;
  }
  .large-button.mud-button-root {
    padding: 12px 19px;
    min-height: 50px;
    font-size: 12px;
  }
  .hero-secondary {
    font-size: 11px;
    min-height: 35px;
  }
  .hero-bottom {
    bottom: 21px;
    padding-top: 17px;
    align-items: center;
  }
  .hero-bottom > span {
    font-size: 6px;
    letter-spacing: 0.08em;
    max-width: 165px;
    line-height: 1.7;
  }
  .hero-bottom a {
    font-size: 7px;
    gap: 10px;
    letter-spacing: 0.05em;
  }
  .hero-bottom a span {
    font-size: 19px;
  }
  .hero-side-note {
    display: none;
  }
  .eyebrow {
    font-size: 9px;
  }
  .section-label {
    margin-bottom: 20px;
  }
  h2 {
    font-size: 29px;
  }
  .intro {
    display: block;
  }
  .intro-title h2 {
    font-size: 28px;
    letter-spacing: -0.05em;
  }
  .intro-copy {
    padding-top: 30px;
  }
  .intro-copy > p:first-child {
    font-size: 21px;
  }
  .intro-copy .body-copy {
    font-size: 14px;
  }
  .intro-copy .text-link {
    margin-top: 14px;
  }
  .experience-stats {
    margin-top: 38px;
    padding-top: 25px;
    grid-template-columns: 1fr 1fr;
    row-gap: 28px;
  }
  .experience-stats > div {
    padding-left: 26px;
    gap: 7px;
  }
  .experience-stats > div:nth-child(2) {
    border: 0;
  }
  .experience-stats > div > span:last-child {
    font-size: 11px;
  }
  .stat-number {
    font-size: 70px;
  }
  .stat-number > span {
    font-size: 27px;
    top: 13px;
  }
  .experience-stats > .stat-statement {
    padding-left: 26px;
    padding-top: 8px;
    align-items: flex-start;
    justify-content: center;
  }
  .stat-statement > span:first-child {
    font-size: 26px;
    line-height: 1.05;
    padding-top: 0;
  }
  .experience-stats .stat-statement > span:last-child {
    font-size: 10px;
    max-width: 150px;
    text-align: left;
    line-height: 1.6;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading > p {
    font-size: 13px;
    margin-top: 22px;
  }
  .serif-heading {
    font-size: 49px;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .product-visual {
    height: 330px;
  }
  .key-card {
    width: 226px;
    height: 144px;
  }
  .paper-display {
    width: 225px;
    height: 218px;
    padding: 18px;
  }
  .paper-title {
    font-size: 26px;
    margin-block: 20px 15px;
  }
  .paper-title em {
    font-size: 22px;
  }
  .product-kicker {
    font-size: 8px;
    left: 23px;
  }
  .coming-badge {
    top: 22px;
    right: 20px;
  }
  .product-description {
    padding-top: 21px;
  }
  .product-description h3 {
    font-size: 24px;
  }
  .product-description p {
    font-size: 13px;
  }
  .product-description .text-link {
    margin-top: 11px;
  }
  .expertise-section {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .expertise-intro h2 {
    font-size: 31px;
  }
  .expertise-monogram {
    display: none;
  }
  .expertise-intro .body-copy {
    font-size: 14px;
  }
  .expertise-panels .mud-expand-panel-header {
    padding: 24px 0;
    min-height: 90px;
  }
  .expertise-panels .mud-expand-panel-header-content {
    gap: 20px;
  }
  .expertise-panels .mud-expand-panel-content {
    padding-left: 39px;
    padding-right: 5px;
  }
  .expertise-panels h3 {
    font-size: 22px;
  }
  .field-banner {
    height: 350px;
  }
  .field-banner h2 {
    font-size: 32px;
  }
  .field-banner .eyebrow {
    font-size: 7px;
  }
  .field-banner p {
    font-size: 12px;
    max-width: 275px;
    line-height: 1.8;
  }
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 30px;
  }
  .partner-grid > div {
    height: 105px;
  }
  .partner-grid > div:last-child {
    grid-column: auto;
  }
  .hotel-serif {
    font-size: 16px;
  }
  .hotel-sans {
    font-size: 15px;
  }
  .hotel-script {
    font-size: 26px;
  }
  .partner-grid small {
    font-size: 6px;
  }
  .partner-note {
    font-size: 9px;
  }
  .contact-banner {
    padding-block: 54px;
  }
  .contact-banner-inner {
    display: block;
  }
  .contact-banner h2 {
    font-size: 32px;
  }
  .contact-banner p {
    font-size: 13px;
    margin-block: 25px 23px;
  }
  .contact-banner .eyebrow {
    font-size: 8px;
    margin-bottom: 21px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 35px 22px;
    padding-bottom: 40px;
  }
  .footer-top > div:first-child {
    grid-column: 1/-1;
  }
  .footer-top p {
    margin-top: 17px;
  }
  .footer-group {
    gap: 13px;
    font-size: 11px;
  }
  .footer-group:last-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    padding-block: 20px;
    font-size: 8px;
  }
  .site-footer {
    padding-top: 43px;
  }
  .footer-wordmark {
    font-size: 29px;
  }
  .breadcrumb {
    margin-bottom: 35px;
    font-size: 11px;
  }
  .detail-heading {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .detail-heading h1 {
    font-size: 39px;
  }
  .detail-heading .lead {
    font-size: 14px;
  }
  .access-detail-art {
    aspect-ratio: 1.3;
  }
  .big-m {
    font-size: 160px;
  }
  .detail-heading .button-row {
    margin-top: 25px;
  }
  .button-row {
    gap: 15px;
  }
  .feature-grid {
    gap: 35px 25px;
  }
  .feature-grid h3 {
    font-size: 18px;
  }
  .feature-grid p {
    font-size: 12px;
  }
  .feature-number {
    font-size: 7px;
  }
  .feature-grid .mud-icon-root {
    font-size: 28px;
  }
  .process-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .process-list li {
    padding-block: 23px;
  }
  .epaper-editorial {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .epaper-editorial h1 {
    font-size: 76px;
  }
  .epaper-editorial h2 {
    font-size: 28px;
  }
  .standalone-paper {
    aspect-ratio: 1.05;
  }
  .standalone-paper .paper-display {
    transform: rotate(-7deg) scale(1.05);
  }
  .company-hero h1 {
    font-size: 43px;
  }
  .company-intro {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-block: 30px;
  }
  .company-intro .lead {
    font-size: 18px;
  }
  .company-intro .body-copy {
    font-size: 14px;
  }
  .company-image {
    height: 280px;
  }
  .values-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 35px;
  }
  .values-grid article > span {
    margin-bottom: 19px;
  }
  .values-grid h3 {
    font-size: 22px;
    margin-bottom: 14px;
  }
  .values-grid p {
    font-size: 14px;
  }
  .contact-intro h1 {
    font-size: 39px;
  }
  .contact-intro .lead {
    font-size: 15px;
  }
  .contact-details {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 33px;
  }
  .contact-details :is(a, .email-copy) {
    font-size: 20px;
  }
  .inquiry-card {
    padding: 25px 19px;
  }
  .inquiry-card h2 {
    font-size: 26px;
  }
  .inquiry-types {
    gap: 6px;
  }
  .type-button.mud-button-root {
    font-size: 12px;
  }
  .recipient-line {
    font-size: 9px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .full-width {
    grid-column: auto;
  }
  .inquiry-card .mud-input-label,
  .inquiry-card .mud-input {
    font-size: 13px;
  }
  .inquiry-card .mud-input > textarea {
    min-height: 140px;
  }
  .form-note {
    font-size: 10px;
  }
  .draft-panel {
    padding: 20px 14px;
  }
  .prose-page h1 {
    font-size: 37px;
  }
  .prose-page p {
    font-size: 14px;
  }
  .empty-page {
    padding-block: 90px;
  }
  .empty-page h1 {
    font-size: 32px;
  }
  .empty-page p {
    font-size: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}

h1[tabindex="-1"]:focus {
  outline: none;
}
.form-grid > .mud-select {
  grid-column: 1/-1;
}
.expertise-panels {
  border-top: 1px solid var(--line);
  align-self: start;
}
.expertise-item {
  border-bottom: 1px solid var(--line);
}
.expertise-item summary {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 29px 0;
  cursor: pointer;
  list-style: none;
}
.expertise-item summary::-webkit-details-marker {
  display: none;
}
.expertise-item summary .eyebrow {
  font-size: 8px;
  color: #738266;
}
.expertise-item h3 {
  font-size: 24px;
  margin-top: 4px;
}
.expansion-mark {
  margin-left: auto;
  font-size: 25px;
  font-weight: 250;
  color: #7b8c6b;
}
.expertise-item[open] .expansion-mark {
  transform: rotate(45deg);
}
.expertise-detail {
  padding: 0 18px 28px 46px;
  font-size: 14px;
  line-height: 1.9;
  color: #6c766b;
}
.expertise-detail .detail-tags {
  margin-top: 16px;
}
@media (max-width: 600px) {
  .expertise-item summary {
    gap: 20px;
    padding-block: 24px;
  }
  .expertise-item h3 {
    font-size: 22px;
  }
  .expertise-detail {
    padding-left: 39px;
    padding-right: 0;
  }
}
