:root {
  --ink: #0b292a;
  --ink2: #153738;
  --gold: #b99762;
  --gold2: #d5bd94;
  --ivory: #f6f2e9;
  --paper: #fff;
  --mist: #eff2ee;
  --muted: #667674;
  --line: #d8ded9;
  --serif: "Libre Caslon Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  color: var(--ink);
  font: 16px/1.6 var(--sans);
  background: #fff;
}
body:has(dialog[open]) {
  overflow: hidden;
}
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
}
h2 {
  font-size: clamp(2.6rem, 4.2vw, 4.7rem);
  margin-bottom: 24px;
}
h3 {
  font-size: 1.6rem;
}
p {
  margin-bottom: 0;
}
svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.skip {
  position: fixed;
  top: -80px;
  left: 20px;
  background: #fff;
  padding: 12px;
  z-index: 999;
}
.skip:focus {
  top: 12px;
}
.site-header {
  height: 92px;
  display: flex;
  align-items: center;
  gap: 3vw;
  padding: 0 4.5%;
  background: #fbfcfa;
  position: relative;
  z-index: 30;
  border-bottom: 1px solid #e5e8e4;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}
.brand > span:last-child {
  display: block;
}
.brand b {
  display: block;
  font: 500 16px/1.15 var(--serif);
  letter-spacing: 2.8px;
}
.brand small {
  display: block;
  font-size: 8px;
  letter-spacing: 3.3px;
  margin-top: 5px;
}
.monogram {
  width: 49px;
  height: 49px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font: 400 27px/1 var(--serif);
  color: var(--gold);
}
.monogram.small {
  width: 34px;
  height: 34px;
  font-size: 18px;
}
.desktop-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.desktop-nav a {
  font-size: 13px;
  padding: 13px 0;
  position: relative;
}
.desktop-nav a:after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: 0.25s;
}
.desktop-nav a:hover:after {
  width: 100%;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 11px;
}
.header-actions button {
  white-space: nowrap;
}
.quiet-button,
.language-button,
.menu-button {
  border: 0;
  background: none;
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  padding: 8px;
}
.quiet-button {
  font-size: 13px;
}
.language-button {
  font-size: 12px;
  border-left: 1px solid var(--line);
}
.menu-button {
  display: none;
}
.button {
  border: 1px solid transparent;
  background: var(--gold);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 52px;
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: 0.2s;
}
.button:hover {
  filter: brightness(0.94);
  transform: translateY(-1px);
}
.button.gold {
  min-height: 46px;
  padding: 11px 18px;
}
.button.ivory {
  background: var(--ivory);
  color: var(--ink);
}
.button.dark {
  background: var(--ink);
  color: #fff;
}
.button.outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.button.full {
  width: 100%;
}
.line-button,
.text-action {
  border: 0;
  background: none;
  padding: 9px 0;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid #778b86;
  font-size: 13px;
  font-weight: 500;
}
.line-button.light-line {
  color: #fff;
  border-color: #ffffff70;
}
.text-action {
  border: 0;
  text-decoration: underline;
  text-underline-offset: 5px;
  gap: 6px;
}
.hero {
  height: calc(100svh - 92px);
  min-height: 650px;
  max-height: 850px;
  color: #fff;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
  z-index: -3;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 26, 27, 0.83),
      rgba(5, 26, 27, 0.43) 54%,
      rgba(5, 26, 27, 0.07)
    ),
    linear-gradient(0deg, rgba(2, 20, 21, 0.45), transparent 38%);
  z-index: -2;
}
.hero-rule {
  position: absolute;
  left: 4.5%;
  top: 15%;
  bottom: 17%;
  width: 1px;
  background: #ffffff38;
}
.hero-copy {
  padding: clamp(82px, 12vh, 130px) 7.5%;
  max-width: 1050px;
}
.kicker {
  font-size: 10px;
  letter-spacing: 2.5px;
  font-weight: 600;
  color: #667d77;
  margin-bottom: 24px;
}
.kicker.light {
  color: var(--gold2);
}
.hero h1 {
  font-size: clamp(4rem, 6.1vw, 6.4rem);
  margin-bottom: 30px;
  max-width: 970px;
}
.hero h1 span,
.hero h1 em {
  display: block;
}
.hero h1 em {
  color: #e6d3b2;
  font-weight: 400;
}
.hero-text {
  font-size: 16px;
  line-height: 1.85;
  color: #eef2ed;
  max-width: 590px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 37px;
}
.hero-footer {
  position: absolute;
  left: 4.5%;
  right: 4.5%;
  bottom: 22px;
  border-top: 1px solid #ffffff44;
  padding-top: 19px;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 2px;
}
.signature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 4.5%;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.signature-strip > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  border-right: 1px solid var(--line);
  min-height: 55px;
}
.signature-strip > div:last-child {
  border: 0;
}
.signature-strip b {
  font: 400 34px var(--serif);
}
.signature-strip p {
  font-size: 10px;
  letter-spacing: 1.5px;
}
.signature-strip small {
  display: block;
  font-size: 8px;
  color: var(--muted);
  letter-spacing: 1.4px;
  margin-top: 4px;
}
.section {
  padding: 110px 7%;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 380px;
  align-items: end;
  gap: 50px;
  margin-bottom: 52px;
}
.section-head h2 {
  margin: 0;
}
.section-head > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}
.service-card {
  min-height: 330px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  text-align: left;
  padding: 36px 34px 31px;
  display: flex;
  flex-direction: column;
  transition: 0.25s;
}
.service-card:nth-child(3n) {
  border-right: 0;
}
.service-card:nth-child(n + 4) {
  border-bottom: 0;
}
.service-card:hover {
  background: var(--ink);
  color: #fff;
}
.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gold);
  margin-bottom: 38px;
}
.service-card-top span:last-child {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--muted);
}
.service-card h3 {
  font-size: 28px;
  margin: 0 0 16px;
}
.service-card p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  flex: 1;
}
.service-card:hover p,
.service-card:hover .service-card-top span:last-child {
  color: #cad5d1;
}
.service-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  font-size: 11px;
  letter-spacing: 0.4px;
}
.service-card-bottom svg {
  width: 18px;
}
.center-action {
  text-align: center;
  margin-top: 38px;
}
.center-action b {
  font: 400 22px var(--serif);
  color: var(--gold);
}
.collections {
  background: var(--ink);
  color: #fff;
  padding: 105px 7% 50px;
}
.section-head.inverse > p {
  color: #b9c6c0;
}
.section-head.inverse .kicker {
  color: var(--gold2);
}
.section-head h2 em {
  color: var(--gold2);
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #ffffff28;
}
.collection-grid article {
  padding: 38px;
  min-height: 470px;
  border-right: 1px solid #ffffff28;
  display: flex;
  flex-direction: column;
}
.collection-grid article:last-child {
  border: 0;
}
.collection-grid article.featured {
  background: #173e3e;
}
.collection-grid article > span {
  font: 400 24px var(--serif);
  color: var(--gold2);
}
.collection-grid article > p {
  font-size: 9px;
  letter-spacing: 2px;
  margin: 32px 0 10px;
  color: #b8c9c1;
}
.collection-grid h3 {
  font-size: 38px;
  margin: 0 0 20px;
}
.collection-grid ul {
  list-style: none;
  padding: 20px 0 0;
  margin: 0 0 30px;
  border-top: 1px solid #ffffff27;
  flex: 1;
}
.collection-grid li {
  position: relative;
  padding: 8px 0 8px 17px;
  font-size: 13px;
  color: #d4ddda;
}
.collection-grid li:before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--gold2);
}
.collection-note {
  text-align: center;
  font-size: 11px;
  color: #93a9a2;
  margin-top: 25px;
  letter-spacing: 0.5px;
}
.approach {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9%;
  background: var(--mist);
  align-items: center;
}
.approach-copy .lead {
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 40px;
}
.approach ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.approach li {
  display: flex;
  gap: 24px;
  border-top: 1px solid #d5ddd8;
  padding: 22px 0;
}
.approach li > span {
  color: var(--gold);
  font: 400 14px var(--serif);
}
.approach h3 {
  font: 500 17px var(--sans);
  letter-spacing: 0;
  margin: 0 0 6px;
}
.approach li p {
  font-size: 13px;
  color: var(--muted);
}
.portal-card {
  background: #fff;
  padding: 30px;
  box-shadow: 0 22px 60px #1d3a3512;
  border-top: 3px solid var(--gold);
}
.portal-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  font-size: 9px;
  letter-spacing: 1.8px;
}
.status-dot {
  margin-left: auto;
  background: #e8f1e9;
  color: #47765a;
  border-radius: 20px;
  padding: 5px 8px;
  letter-spacing: 0.8px;
}
.mini-label {
  font-size: 9px;
  letter-spacing: 1.4px;
  color: var(--muted);
  margin-top: 25px;
}
.portal-card > h3 {
  font-size: 32px;
  margin: 8px 0 25px;
}
.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.metric-row > div {
  background: #f4f5f1;
  padding: 15px;
  min-width: 0;
}
.metric-row small {
  display: block;
  font-size: 9px;
  color: var(--muted);
  height: 30px;
}
.metric-row strong {
  display: block;
  font: 400 26px var(--serif);
  margin-top: 8px;
}
.activity {
  margin: 20px 0;
}
.activity > div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.activity > div > span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #edf3ec;
  color: #4f7558;
}
.activity p {
  font-size: 12px;
  flex: 1;
}
.activity small {
  display: block;
  color: var(--muted);
  font-size: 10px;
}
.activity b {
  font-size: 9px;
  color: #55725d;
}
.operations {
  background: #0b292a;
  color: #f6f1e5;
  padding: 110px max(5vw, calc((100vw - 1280px) / 2));
}
.operations-inner {
  max-width: 1280px;
  margin: auto;
}
.operations-head {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr 1fr;
  gap: 50px;
  align-items: end;
  padding-bottom: 42px;
  border-bottom: 1px solid #ffffff25;
}
.operations-head .kicker {
  color: var(--sand);
}
.operations-head h2 {
  font-size: clamp(38px, 4.5vw, 68px);
  line-height: 0.98;
  margin: 0;
}
.operations-head > p:last-child {
  color: #c1cbc6;
  line-height: 1.7;
  margin: 0;
}
.supplier-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 42px 0 58px;
}
.supplier-choice article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  padding: 28px;
  border: 1px solid #ffffff2b;
  background: #ffffff09;
}
.supplier-choice article > span {
  width: 58px;
  height: 58px;
  border: 1px solid #c4a66a80;
  color: var(--sand);
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.supplier-choice article > span svg {
  width: 25px;
  height: 25px;
}
.supplier-choice small,
.process-steps small {
  color: var(--sand);
  letter-spacing: 0.12em;
}
.supplier-choice h3 {
  font-size: 24px;
  margin: 5px 0 8px;
}
.supplier-choice p {
  color: #c1cbc6;
  margin: 0;
  line-height: 1.55;
}
.process-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.process-title i {
  height: 1px;
  background: #ffffff2b;
  flex: 1;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: operation;
}
.process-steps li {
  min-height: 280px;
  border-left: 1px solid #ffffff2b;
  padding: 8px 22px 22px;
}
.process-steps li:last-child {
  border-right: 1px solid #ffffff2b;
}
.process-steps li > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--sand);
  margin-bottom: 35px;
}
.process-steps li > span svg {
  width: 27px;
  height: 27px;
}
.process-steps h3 {
  font: 400 19px/1.15 var(--serif);
  margin: 12px 0 10px;
}
.process-steps p {
  color: #aebcb6;
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
}
.evidence-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  margin-top: 58px;
  min-height: 530px;
}
.evidence-visual {
  position: relative;
  overflow: hidden;
  background: #153536;
}
.evidence-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.evidence-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #09292aa8, transparent 70%);
}
.document-stack {
  position: absolute;
  z-index: 2;
  inset: 50px 45px;
}
.proof-card {
  position: absolute;
  width: min(420px, 75%);
  min-height: 78px;
  background: #f8f5ed;
  color: var(--ink);
  display: grid;
  grid-template-columns: 44px 1fr 24px;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  box-shadow: 0 18px 50px #00181950;
  border-left: 3px solid var(--gold);
}
.proof-card > span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e8ece6;
}
.proof-card svg {
  width: 19px;
  height: 19px;
}
.proof-card p {
  font-size: 12px;
  font-weight: 600;
  margin: 0;
}
.proof-card small {
  display: block;
  font-weight: 400;
  color: var(--muted);
  margin-top: 5px;
}
.proof-card > b {
  color: #2e785b;
}
.proof-1 {
  top: 0;
  left: 0;
}
.proof-2 {
  top: 92px;
  left: 55px;
}
.proof-3 {
  top: 184px;
  left: 20px;
}
.proof-4 {
  top: 276px;
  left: 78px;
}
.recording-badge {
  position: absolute;
  z-index: 3;
  left: 32px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: #0b292ae8;
  padding: 12px 16px;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.recording-badge svg {
  width: 18px;
  height: 18px;
  color: var(--sand);
}
.fee-card {
  background: #f4efe3;
  color: var(--ink);
  padding: 48px;
  display: flex;
  flex-direction: column;
}
.fee-card > strong {
  font: 400 clamp(72px, 8vw, 122px) / 0.9 var(--serif);
  color: var(--gold);
  margin-top: 22px;
}
.fee-card h3 {
  font-size: 25px;
  margin: 12px 0 18px;
}
.fee-card > p:not(.kicker) {
  color: #55635e;
  line-height: 1.6;
}
.no-markup {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  margin-top: 12px;
  border-top: 1px solid #c8cec6;
  border-bottom: 1px solid #c8cec6;
}
.no-markup > svg {
  width: 22px;
  color: #2e785b;
}
.no-markup small {
  display: block;
  margin-top: 5px;
  line-height: 1.45;
  color: #62706b;
}
.fee-summary {
  font-size: 12px;
}
.approval-first {
  margin-top: auto;
  padding: 15px;
  background: var(--ink);
  color: #fff;
}
.approval-first b,
.approval-first span {
  display: block;
}
.approval-first b {
  color: var(--sand);
  font-size: 9px;
  letter-spacing: 0.14em;
  margin-bottom: 5px;
}
.approval-first span {
  font-size: 11px;
  line-height: 1.45;
}
.report-section {
  padding: 110px 7%;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 7%;
  align-items: center;
}
.report-intro > p:not(.kicker) {
  color: var(--muted);
  max-width: 530px;
}
.report-intro ul {
  list-style: none;
  padding: 25px 0;
  margin: 25px 0;
}
.report-intro li {
  display: grid;
  grid-template-columns: 32px 1fr;
  column-gap: 14px;
  margin-bottom: 18px;
}
.report-intro li span {
  grid-row: 1/3;
  color: var(--gold);
}
.report-intro li b {
  font-size: 13px;
}
.report-intro li small {
  font-size: 12px;
  color: var(--muted);
}
.report-stack {
  height: 610px;
  position: relative;
  perspective: 1200px;
}
.report-page {
  position: absolute;
  background: #fff;
  border: 1px solid #e0e5e2;
  box-shadow: 0 20px 60px #18373325;
  width: 46%;
  height: 520px;
  padding: 24px;
  overflow: hidden;
}
.report-page:nth-child(1) {
  left: 0;
  top: 48px;
  z-index: 3;
}
.report-page:nth-child(2) {
  left: 28%;
  top: 0;
  z-index: 2;
  transform: rotate(1deg);
}
.report-page:nth-child(3) {
  right: 0;
  top: 70px;
  transform: rotate(3deg);
}
.report-cover {
  padding: 0;
  color: #fff;
}
.report-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cover-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(#0b292a22, #0b292acc);
}
.report-cover > span,
.report-cover h3,
.report-cover p,
.report-cover small {
  position: absolute;
  left: 24px;
  z-index: 2;
}
.report-cover > span {
  top: 28px;
  font-size: 8px;
  letter-spacing: 1.5px;
}
.report-cover h3 {
  top: 90px;
  font-size: 34px;
}
.report-cover p {
  bottom: 75px;
  font-size: 12px;
}
.report-cover small {
  bottom: 25px;
  font-size: 8px;
  letter-spacing: 1.5px;
}
.report-brand {
  font-size: 8px;
  letter-spacing: 1.5px;
  color: var(--gold);
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}
.report-page h3 {
  font: 600 13px var(--sans);
  letter-spacing: 0;
  margin: 22px 0 12px;
}
.report-health {
  background: #e8f2ea;
  padding: 15px;
  display: flex;
  flex-direction: column;
}
.report-health b {
  font-size: 13px;
  color: #487554;
}
.report-health span {
  font-size: 9px;
}
.fake-row {
  height: 33px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.fake-row:before {
  content: "";
  position: absolute;
  top: 12px;
  width: 60%;
  height: 5px;
  background: #dae0dd;
}
.fake-row:after {
  content: "✓";
  position: absolute;
  right: 4px;
  top: 7px;
  color: #479660;
}
.fake-row.warning:after {
  content: "!";
  color: #d99b1f;
}
.fake-chart {
  height: 100px;
  display: flex;
  align-items: end;
  gap: 8px;
}
.fake-chart i {
  flex: 1;
  background: #cad7d0;
  height: 40%;
}
.fake-chart i:nth-child(2) {
  height: 70%;
}
.fake-chart i:nth-child(3) {
  height: 55%;
}
.fake-chart i:nth-child(4) {
  height: 90%;
}
.fake-chart i:nth-child(5) {
  height: 75%;
}
.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}
.photo-grid figure {
  margin: 0;
  border: 1px solid var(--line);
}
.photo-grid img {
  height: 96px;
  width: 100%;
  object-fit: cover;
}
.photo-grid figcaption {
  font-size: 8px;
  padding: 7px;
}
.life {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  background: var(--ivory);
  align-items: stretch;
}
.life-image {
  position: relative;
  min-height: 700px;
}
.life-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.life-image:after {
  content: "";
  position: absolute;
  inset: 65% 0 0;
  background: linear-gradient(transparent, #082b2b99);
}
.life-image > span {
  position: absolute;
  bottom: 30px;
  left: 35px;
  color: #fff;
  z-index: 2;
  font-size: 9px;
  letter-spacing: 2px;
}
.life-copy {
  padding: 110px 10%;
}
.life-copy > p:not(.kicker) {
  color: var(--muted);
}
.season-tabs {
  display: flex;
  border-bottom: 1px solid #ccd3ce;
  margin-top: 35px;
}
.season-tabs button {
  border: 0;
  background: none;
  padding: 13px 0;
  margin-right: 24px;
  border-bottom: 2px solid transparent;
  font-size: 12px;
}
.season-tabs button[aria-selected="true"] {
  border-color: var(--ink);
  font-weight: 600;
}
.season-content {
  min-height: 170px;
  padding: 25px 0;
}
.season-content p {
  font-size: 13px;
  margin-bottom: 13px;
  display: flex;
  gap: 12px;
}
.season-content p:before {
  content: "✓";
  color: var(--gold);
}
.app-section {
  padding: 100px 10%;
  background: #f6f7f4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
  align-items: center;
}
.phone-mock {
  width: 290px;
  height: 585px;
  background: #111;
  border: 8px solid #173637;
  border-radius: 44px;
  padding: 12px;
  margin: auto;
  box-shadow: 0 25px 70px #18373330;
}
.phone-screen {
  height: 100%;
  background: #f4f2eb;
  border-radius: 28px;
  padding: 24px 18px;
  overflow: hidden;
}
.phone-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
}
.phone-screen > p {
  font-size: 8px;
  letter-spacing: 1.2px;
  margin-top: 28px;
}
.phone-screen > h3 {
  font-size: 28px;
  margin: 8px 0 20px;
}
.phone-property {
  height: 190px;
  position: relative;
  color: #fff;
}
.phone-property img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.phone-property:after {
  content: "";
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(transparent, #082b2bbc);
}
.phone-property span {
  position: absolute;
  z-index: 2;
  bottom: 12px;
  left: 12px;
  font-size: 9px;
  letter-spacing: 1px;
}
.phone-property small {
  display: block;
  margin-top: 3px;
}
.phone-links {
  margin-top: 14px;
}
.phone-links > span {
  display: grid;
  grid-template-columns: 25px 1fr auto;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #d6dad5;
  font-size: 10px;
}
.phone-links i {
  display: flex;
}
.phone-links svg {
  width: 16px;
}
.phone-links b {
  font-size: 9px;
  color: var(--muted);
}
.app-copy > p:not(.kicker) {
  color: var(--muted);
  margin-bottom: 25px;
}
.store-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}
.store-card {
  width: 150px;
  height: 55px;
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  opacity: 0.65;
}
.store-card img {
  width: 25px;
  height: 25px;
}
.store-card span {
  font-size: 9px;
  line-height: 1.2;
}
.store-card b {
  display: block;
  font-size: 11px;
}
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink);
  color: #fff;
}
.contact-copy {
  padding: 95px 10%;
}
.contact-copy h2 {
  font-size: clamp(2.8rem, 4.5vw, 5rem);
}
.contact-copy > p:not(.kicker) {
  color: #c7d2cf;
  max-width: 500px;
  margin-bottom: 35px;
}
.contact-directory {
  background: #fff;
  color: var(--ink);
  padding: 70px 9%;
}
.contact-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-item {
  display: flex;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 15px 0;
}
.contact-item span {
  color: var(--gold);
}
.contact-item small {
  display: block;
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 1px;
}
.contact-item b {
  font-size: 13px;
  font-weight: 500;
}
.pending-note {
  font-size: 11px;
  color: var(--muted);
  margin: 18px 0 32px;
}
.contact-directory h3 {
  font: 600 10px var(--sans);
  letter-spacing: 1.5px;
  margin: 24px 0 12px;
}
.logo-links,
.review-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.placeholder-link {
  border: 1px solid var(--line);
  min-width: 115px;
  height: 48px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  opacity: 0.6;
}
.placeholder-link img {
  width: 20px;
  height: 20px;
}
.placeholder-link span {
  font-size: 11px;
}
.footer-brand {
  grid-column: span 2;
}
footer {
  background: #061f20;
  color: #fff;
  padding: 60px 6% 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
footer .inverse-brand {
  color: #fff;
}
footer .footer-brand p {
  color: #91a5a0;
  font-size: 12px;
  margin-top: 17px;
}
footer h4 {
  font-size: 9px;
  letter-spacing: 1.8px;
  color: var(--gold2);
  margin: 0 0 16px;
}
footer > div:not(.footer-brand):not(.footer-bottom):not(.footer-mark) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
footer a,
footer button {
  border: 0;
  background: none;
  color: #cbd6d2;
  padding: 5px 0;
  font-size: 12px;
}
.footer-mark {
  font: 400 23px/1.6 var(--serif);
  color: var(--gold2);
  text-align: right;
}
.footer-bottom {
  grid-column: 1/-1;
  border-top: 1px solid #ffffff1f;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  color: #819a94;
  font-size: 9px;
  letter-spacing: 0.7px;
}
.footer-bottom button {
  font-size: 9px;
  padding: 0;
}
.mobile-nav {
  position: absolute;
  top: 92px;
  left: 0;
  right: 0;
  background: #fff;
  padding: 18px 5%;
  box-shadow: 0 20px 40px #051b1c20;
}
.mobile-nav a,
.mobile-nav button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px;
  border: 0;
  background: none;
}
dialog {
  border: 0;
  padding: 34px;
  width: min(800px, calc(100% - 30px));
  max-height: 90svh;
  box-shadow: 0 30px 120px #00171850;
  color: var(--ink);
  background: #fff;
}
dialog::backdrop {
  background: #051f20c7;
  backdrop-filter: blur(4px);
}
.large-dialog {
  width: min(1120px, calc(100% - 30px));
}
.dialog-head,
.dashboard-head,
.report-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.dialog-head h2,
.dashboard-head h2,
.report-toolbar h2 {
  font-size: 36px;
  margin: 0 0 20px;
}
.icon-button {
  border: 1px solid var(--line);
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: none;
}
.icon-button svg {
  width: 18px;
}
.language-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.language-prompt {
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: 11px;
}
.language-dialog.initial-choice [data-close] {
  display: none;
}
.language-dialog.initial-choice::backdrop {
  background: rgba(5, 25, 26, 0.88);
  backdrop-filter: blur(12px);
}
.language-option {
  border: 1px solid var(--line);
  background: #fff;
  padding: 15px;
  text-align: left;
  display: flex;
  justify-content: space-between;
}
.language-option[aria-current="true"] {
  border-color: var(--gold);
  background: #faf6ed;
}
.language-option small {
  color: var(--muted);
}
.catalog-tools {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 12px;
}
.search-field {
  border: 1px solid #bac7c1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
}
.search-field input {
  border: 0;
  outline: 0;
  width: 100%;
  height: 52px;
}
.catalog-tools select,
input,
textarea,
.form-grid select {
  border: 1px solid #bac7c1;
  background: #fff;
  min-height: 52px;
  padding: 12px;
  width: 100%;
}
.catalog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  font-size: 12px;
  color: var(--muted);
}
.catalog-meta > div {
  display: flex;
  gap: 18px;
}
.catalog-group {
  padding: 16px 0 22px;
}
.catalog-group h3 {
  font-size: 25px;
  margin: 0 0 14px;
}
.catalog-subcategory {
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--muted);
  text-transform: uppercase;
  margin: 17px 0 8px;
}
.service-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}
.service-option {
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  min-height: 66px;
  position: relative;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}
.service-choice {
  padding: 11px 10px 11px 11px;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 13px;
  cursor: pointer;
}
.service-option:hover {
  border-color: #9d8a63;
  transform: translateY(-1px);
}
.service-option:has(input:checked) {
  background: #f3efe4;
  border-color: var(--gold);
}
.service-input {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.service-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  background: #edf0eb;
  color: var(--ink);
  display: grid;
  place-items: center;
}
.service-icon svg {
  width: 20px;
  height: 20px;
}
.service-label {
  flex: 1;
  line-height: 1.35;
}
.service-info-button {
  border: 0;
  border-left: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  display: grid;
  place-items: center;
  width: 48px;
  min-height: 100%;
  padding: 0;
  font: 600 15px/1 var(--serif);
  transition: 180ms ease;
}
.service-info-button:hover,
.service-info-button:focus-visible {
  background: #f3efe4;
  color: var(--ink);
}
.service-info-button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -3px;
}
.service-check {
  width: 22px;
  height: 22px;
  border: 1px solid #9ba9a5;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: transparent;
  flex: 0 0 22px;
}
.service-check svg {
  width: 13px;
  height: 13px;
}
.service-option:has(input:checked) .service-icon,
.service-option:has(input:checked) .service-check {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.service-option:focus-within {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.service-info-dialog {
  width: min(650px, calc(100% - 30px));
}
.service-info-dialog .dialog-head h2 {
  max-width: 500px;
  margin-bottom: 0;
}
.service-info-content {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}
.service-info-content section {
  background: var(--mist);
  border-left: 2px solid var(--gold);
  padding: 17px 19px;
}
.service-info-content h3 {
  font: 600 13px/1.3 var(--sans);
  letter-spacing: 0.02em;
  margin: 0 0 8px;
}
.service-info-content p {
  color: #4d5e58;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}
.dialog-bar {
  position: sticky;
  bottom: -34px;
  margin-top: 18px;
  background: #fff;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -10px 20px #fff;
}
.stepper {
  display: flex;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--line);
}
.stepper span {
  flex: 1;
  padding: 10px;
  color: #a0aba7;
  font-size: 10px;
}
.stepper span.active {
  color: var(--ink);
  border-bottom: 2px solid var(--gold);
}
.stepper b {
  display: block;
  font-size: 12px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-grid label,
.notes,
.login-form label,
.small-dialog label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 12px;
}
.selected-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}
.selected-head h3 {
  font: 600 14px var(--sans);
  margin: 0;
}
.plan-selected {
  display: flex;
}
.selected-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eef1ed;
  border: 1px solid var(--line);
  margin: 4px;
  padding: 6px 8px;
  font-size: 10px;
}
.selected-chip i,
.selected-chip i svg {
  width: 14px;
  height: 14px;
}
.selected-chip i {
  color: var(--ink);
}
.selected-chip button {
  border: 0;
  background: none;
}
.empty-selection {
  background: #f5f6f3;
  padding: 17px;
  font-size: 12px;
}
.notes {
  margin-top: 18px;
}
.notes textarea {
  resize: vertical;
}
.form-note,
.form-status {
  font-size: 10px;
  color: var(--muted);
  margin: 15px 0;
}
.form-status {
  color: #7a5c25;
}
.login-dialog {
  padding: 0;
  width: min(900px, calc(100% - 30px));
  overflow: hidden;
}
.login-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 610px;
}
.login-art {
  position: relative;
  color: #fff;
  isolation: isolate;
}
.login-art > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.login-art:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, #072829df);
  z-index: -1;
}
.login-art > div {
  position: absolute;
  left: 35px;
  bottom: 38px;
}
.login-art p {
  font-size: 9px;
  letter-spacing: 1.5px;
  margin: 18px 0 10px;
}
.login-art h2 {
  font-size: 40px;
  margin: 0;
}
.login-form {
  padding: 55px 48px;
  position: relative;
}
.login-close {
  position: absolute;
  right: 25px;
  top: 22px;
}
.login-form > h2 {
  font-size: 42px;
  margin-bottom: 14px;
}
.demo-note {
  font-size: 12px;
  color: var(--muted);
  background: #f5f3ec;
  padding: 12px;
  margin-bottom: 22px;
}
.login-form label {
  margin-bottom: 16px;
}
.password-wrap {
  display: flex;
  border: 1px solid #bac7c1;
}
.password-wrap input {
  border: 0;
}
.password-wrap button {
  border: 0;
  background: #fff;
  padding: 0 12px;
}
.login-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.login-tools label {
  display: flex;
  flex-direction: row;
  margin: 0;
}
.login-tools input {
  width: auto;
  min-height: 0;
}
.or {
  text-align: center;
  border-bottom: 1px solid var(--line);
  height: 18px;
  margin: 18px 0 26px;
}
.or span {
  background: #fff;
  padding: 0 10px;
  font-size: 9px;
  color: var(--muted);
}
.small-dialog {
  width: min(570px, calc(100% - 30px));
}
.small-dialog > p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.dashboard-dialog {
  width: min(1220px, calc(100% - 20px));
  height: min(800px, 94svh);
  max-height: 94svh;
  padding: 0;
  overflow: hidden;
}
.dashboard-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  height: 100%;
}
.dashboard-shell aside {
  background: var(--ink);
  color: #fff;
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
}
.mini-brand b {
  font-size: 10px;
}
.mini-brand small {
  font-size: 6px;
}
.dashboard-shell aside > p {
  font-size: 8px;
  letter-spacing: 1.2px;
  color: #93a8a2;
  margin: 35px 0 15px;
}
.dashboard-shell aside nav button,
.dash-signout {
  border: 0;
  background: none;
  color: #b8c8c3;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px;
  text-align: left;
  font-size: 11px;
}
.dashboard-shell aside nav button.active {
  background: #ffffff10;
  color: #fff;
  border-left: 2px solid var(--gold);
}
.dash-signout {
  margin-top: auto;
}
.dashboard-shell > section {
  padding: 35px;
  overflow: auto;
  background: #f7f8f5;
}
.dashboard-head {
  margin-bottom: 25px;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.dash-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 18px;
}
.dash-card small {
  font-size: 9px;
  color: var(--muted);
}
.dash-card strong {
  display: block;
  font: 400 30px var(--serif);
}
.dash-list {
  background: #fff;
  border: 1px solid var(--line);
  margin-top: 15px;
}
.dash-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 17px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.dash-row p {
  flex: 1;
}
.dash-row small {
  display: block;
  color: var(--muted);
}
.pill {
  font-size: 9px;
  padding: 4px 8px;
  background: #edf3eb;
  border-radius: 20px;
}
.pill.warn {
  background: #f7edda;
  color: #8c6927;
}
.request-form {
  background: #fff;
  padding: 20px;
}
.request-form textarea {
  margin: 10px 0;
}
.report-dialog {
  width: min(1180px, calc(100% - 20px));
  padding: 25px;
  background: #eef0ed;
}
.report-toolbar {
  position: sticky;
  top: -25px;
  background: #eef0ed;
  padding: 8px 0 15px;
  z-index: 5;
}
.report-toolbar .text-action {
  margin-left: auto;
}
.report-document {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.document-page {
  background: #fff;
  min-height: 650px;
  padding: 36px;
  box-shadow: 0 8px 25px #173a3520;
  position: relative;
}
.document-page.cover {
  padding: 0;
  color: #fff;
}
.document-page.cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.document-page.cover:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 20%, #092f30e8);
}
.document-cover-copy {
  position: absolute;
  z-index: 2;
  left: 36px;
  right: 36px;
  bottom: 38px;
}
.cover-page {
  position: absolute;
  z-index: 3;
  right: 32px;
  bottom: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.12em;
}
.document-cover-copy h3 {
  font-size: 50px;
  margin: 10px 0;
}
.doc-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 15px;
  font-size: 9px;
  letter-spacing: 1.2px;
}
.doc-title {
  font: 400 22px var(--serif);
  margin: 25px 0 15px;
}
.info-table,
.expense-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 10px;
}
.info-table td,
.expense-table td,
.expense-table th {
  border: 1px solid var(--line);
  padding: 8px;
  text-align: left;
}
.status-summary {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #e8f3e9;
  padding: 15px;
  margin: 20px 0;
}
.status-summary b {
  font-size: 13px;
  color: #4a7657;
}
.inspection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.inspection-item {
  border: 1px solid var(--line);
}
.inspection-item img {
  width: 100%;
  height: 115px;
  object-fit: cover;
}
.inspection-item div {
  padding: 8px;
  font-size: 9px;
}
.doc-footer {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 20px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 8px;
  font-size: 8px;
}
.recommendation {
  padding: 11px;
  margin: 10px 0;
  background: #fff5da;
  border-left: 3px solid #d89c1d;
  font-size: 10px;
}
.plan-list {
  font-size: 10px;
  padding-left: 18px;
}
.plan-list li {
  padding: 6px;
}
.no-results {
  text-align: center;
  padding: 55px;
}
.no-results h3 {
  font-size: 28px;
}
@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }
  .menu-button {
    display: flex;
  }
  .quiet-button span:last-child {
    display: none;
  }
  .section,
  .collections {
    padding: 85px 5%;
  }
  .operations {
    padding: 85px 5%;
  }
  .report-section {
    padding: 85px 5%;
    gap: 4%;
  }
  .report-stack {
    transform: scale(0.9);
  }
  .approach {
    gap: 5%;
  }
  .contact-copy {
    padding: 75px 8%;
  }
  .contact-directory {
    padding: 60px 7%;
  }
}
@media (max-width: 850px) {
  .site-header {
    padding: 0 4%;
    height: 82px;
    position: sticky;
    top: 0;
  }
  .mobile-nav {
    position: fixed;
    top: 82px;
    bottom: 0;
    overflow-y: auto;
    padding: 20px 4% 32px;
    border-top: 1px solid var(--line);
  }
  .mobile-nav a,
  .mobile-nav button {
    min-height: 52px;
    display: flex;
    align-items: center;
  }
  .mobile-nav .mobile-plan {
    justify-content: space-between;
    margin: 10px 0 8px;
    padding: 14px 16px;
    background: var(--ink);
    color: #fff;
    font-weight: 600;
  }
  .header-actions > .button {
    display: none;
  }
  .hero {
    height: 700px;
    max-height: calc(100svh - 82px);
  }
  .hero-copy {
    padding: 90px 7%;
  }
  .hero h1 {
    font-size: 58px;
  }
  .signature-strip {
    grid-template-columns: 1fr 1fr;
  }
  .signature-strip > div:nth-child(2) {
    border-right: 0;
  }
  .signature-strip > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .section-head {
    grid-template-columns: 1fr;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-card:nth-child(3n) {
    border-right: 1px solid var(--line);
  }
  .service-card:nth-child(2n) {
    border-right: 0;
  }
  .service-card:nth-child(n + 4) {
    border-bottom: 1px solid var(--line);
  }
  .service-card:nth-child(n + 5) {
    border-bottom: 0;
  }
  .collection-grid {
    grid-template-columns: 1fr;
  }
  .collection-grid article {
    border-right: 0;
    border-bottom: 1px solid #ffffff28;
    min-height: 420px;
  }
  .approach,
  .report-section,
  .life,
  .app-section,
  .contact-section {
    grid-template-columns: 1fr;
  }
  .operations-head {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-steps li:nth-child(4) {
    border-top: 1px solid #ffffff2b;
  }
  .process-steps li:nth-child(n + 4) {
    padding-top: 28px;
  }
  .evidence-layout {
    grid-template-columns: 1fr;
  }
  .evidence-visual {
    min-height: 530px;
  }
  .report-stack {
    max-width: 660px;
    width: 100%;
    margin: auto;
  }
  .life-image {
    min-height: 500px;
  }
  .phone-mock {
    grid-row: 2;
  }
  .login-layout {
    grid-template-columns: 1fr;
  }
  .login-art {
    display: none;
  }
  .dashboard-shell {
    grid-template-columns: 180px 1fr;
  }
  .report-document {
    grid-template-columns: 1fr;
  }
  .document-page {
    min-height: 700px;
  }
  footer {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: span 1;
  }
  .footer-mark {
    display: none;
  }
}
@media (max-width: 600px) {
  body {
    overflow-x: hidden;
  }
  h2 {
    font-size: 38px;
  }
  .site-header {
    padding: 0 18px;
  }
  .header-actions {
    gap: 2px;
  }
  .language-button {
    border-left: 0;
    padding: 8px 5px;
  }
  .language-button svg,
  .menu-button svg {
    width: 20px;
    height: 20px;
  }
  .menu-button {
    padding: 8px 2px 8px 6px;
  }
  .mobile-nav {
    padding: 16px 18px 28px;
  }
  .brand b {
    font-size: 12px;
    letter-spacing: 2px;
  }
  .brand small {
    font-size: 6px;
  }
  .monogram {
    width: 41px;
    height: 41px;
  }
  .quiet-button {
    display: none;
  }
  .hero {
    min-height: 600px;
    height: calc(100svh - 82px);
  }
  .hero > img {
    object-position: 60% 50%;
  }
  .hero-overlay {
    background: linear-gradient(90deg, #061f20de, #061f2070);
  }
  .hero-rule {
    left: 20px;
  }
  .hero-copy {
    padding: 76px 35px;
  }
  .hero h1 {
    font-size: 42px;
  }
  .hero-text {
    font-size: 14px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .hero-footer {
    left: 20px;
    right: 20px;
    font-size: 7px;
  }
  .hero-footer span:last-child {
    display: none;
  }
  .signature-strip {
    margin: 0 20px;
  }
  .signature-strip > div {
    padding: 13px 5px;
    gap: 8px;
  }
  .signature-strip p {
    font-size: 8px;
  }
  .signature-strip small {
    font-size: 6px;
  }
  .section,
  .collections,
  .report-section,
  .app-section {
    padding: 65px 20px;
  }
  .operations {
    padding: 65px 20px;
  }
  .supplier-choice,
  .process-steps {
    grid-template-columns: 1fr;
  }
  .supplier-choice article {
    padding: 22px;
  }
  .process-steps li,
  .process-steps li:nth-child(n + 4) {
    min-height: 0;
    border: 0;
    border-top: 1px solid #ffffff2b;
    padding: 24px 8px;
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 14px;
  }
  .process-steps li > span {
    grid-row: 1 / span 3;
    margin: 0;
  }
  .process-steps h3,
  .process-steps p {
    grid-column: 2;
  }
  .process-steps h3 {
    margin: 5px 0 8px;
  }
  .evidence-visual {
    min-height: 500px;
  }
  .document-stack {
    inset: 35px 18px;
  }
  .proof-card {
    width: calc(100% - 28px);
  }
  .proof-2 {
    left: 22px;
  }
  .proof-3 {
    left: 4px;
  }
  .proof-4 {
    left: 26px;
  }
  .fee-card {
    padding: 32px 24px;
    min-height: 570px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important;
    min-height: 275px;
  }
  .service-card:last-child {
    border-bottom: 0 !important;
  }
  .collection-grid article {
    padding: 27px;
    min-height: 390px;
  }
  .approach {
    padding: 65px 20px;
  }
  .portal-card {
    padding: 20px;
  }
  .metric-row {
    gap: 5px;
  }
  .metric-row > div {
    padding: 10px;
  }
  .metric-row small {
    font-size: 8px;
  }
  .report-stack {
    height: 440px;
  }
  .report-page {
    height: 390px;
    padding: 16px;
  }
  .report-page:nth-child(1) {
    width: 55%;
    top: 25px;
  }
  .report-page:nth-child(2) {
    width: 55%;
    left: 23%;
  }
  .report-page:nth-child(3) {
    width: 55%;
    top: 45px;
  }
  .report-page h3 {
    font-size: 9px;
  }
  .report-cover h3 {
    font-size: 25px;
    left: 16px;
  }
  .report-cover > span,
  .report-cover p,
  .report-cover small {
    left: 16px;
  }
  .photo-grid img {
    height: 62px;
  }
  .life-image {
    min-height: 390px;
  }
  .life-copy {
    padding: 65px 20px;
  }
  .season-tabs button {
    margin-right: 12px;
    font-size: 10px;
  }
  .app-copy {
    grid-row: 1;
  }
  .phone-mock {
    grid-row: 2;
  }
  .contact-copy,
  .contact-directory {
    padding: 55px 20px;
  }
  .contact-list {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  footer {
    padding: 45px 20px 20px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
  .language-grid {
    grid-template-columns: 1fr 1fr;
  }
  dialog {
    padding: 23px 18px;
    width: calc(100% - 16px);
    max-height: 94svh;
    overflow: auto;
  }
  .dialog-head h2 {
    font-size: 29px;
  }
  .catalog-tools {
    grid-template-columns: 1fr;
  }
  .catalog-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin: 16px 0 4px;
  }
  .catalog-meta > div {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }
  .service-options {
    grid-template-columns: 1fr;
  }
  .service-option {
    min-height: 74px;
    grid-template-columns: minmax(0, 1fr) 52px;
  }
  .service-choice {
    padding: 12px 10px 12px 12px;
    font-size: 14px;
  }
  .service-info-button {
    width: 52px;
  }
  .service-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }
  .dialog-bar {
    bottom: -23px;
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    padding-top: 14px;
  }
  .dialog-bar .button {
    width: 100%;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .stepper {
    overflow-x: auto;
    margin-right: -4px;
  }
  .stepper span {
    min-width: 112px;
  }
  .service-info-dialog {
    width: calc(100% - 16px);
  }
  .service-info-content {
    margin-top: 20px;
  }
  .service-info-content section {
    padding: 15px 16px;
  }
  .login-form {
    padding: 45px 22px;
  }
  .dashboard-dialog {
    width: 100%;
    height: 100svh;
    max-height: 100svh;
  }
  .dashboard-shell {
    grid-template-columns: 1fr;
  }
  .dashboard-shell aside {
    padding: 12px;
    display: block;
  }
  .dashboard-shell aside > p {
    display: none;
  }
  .dashboard-shell aside nav {
    display: flex;
    overflow-x: auto;
    margin-top: 13px;
  }
  .dashboard-shell aside nav button {
    min-width: 145px;
  }
  .dash-signout {
    display: none;
  }
  .dashboard-shell > section {
    padding: 20px;
  }
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .report-dialog {
    width: 100%;
    max-height: 100svh;
    padding: 12px;
  }
  .report-toolbar h2 {
    font-size: 23px;
  }
  .report-toolbar .kicker {
    display: none;
  }
  .document-page {
    padding: 22px;
    min-height: 600px;
  }
  .inspection-grid {
    grid-template-columns: 1fr 1fr;
  }
  .doc-footer {
    left: 22px;
    right: 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
@media print {
  body > *:not(dialog[open]) {
    display: none !important;
  }
  .report-dialog {
    position: static !important;
    width: 100% !important;
    max-height: none !important;
    padding: 0 !important;
    background: white !important;
  }
  .report-dialog::backdrop,
  .report-toolbar {
    display: none;
  }
  .report-document {
    display: block;
  }
  .document-page {
    break-after: page;
    box-shadow: none;
    min-height: 100vh;
  }
}
