:root {
  --ink: #102e3f;
  --ink-deep: #09212f;
  --ink-soft: #dce8ed;
  --ochre: #b66f26;
  --ochre-deep: #81501f;
  --ochre-light: #f3e4cf;
  --rust: #9d4d2e;
  --stone: #f2efe8;
  --aggregate: #d5d0c7;
  --paper: #fffdfa;
  --white: #ffffff;
  --text: #273941;
  --muted: #5c696e;
  --line: #d9ddd9;
  --shadow: 0 22px 55px rgba(16, 46, 63, 0.13);
  --radius: 1.05rem;
  --shell: 75rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.75rem;
}

body {
  margin: 0;
  min-width: 20rem;
  color: var(--text);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.62;
  overflow-wrap: anywhere;
}

body::before {
  position: fixed;
  z-index: 90;
  top: 0;
  right: 0;
  left: 0;
  height: 0.28rem;
  content: "";
  background: linear-gradient(90deg, var(--ink) 0 45%, var(--aggregate) 45% 64%, var(--ochre) 64% 84%, var(--rust) 84%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button,
a,
summary,
label {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 0.2rem solid #e99a32;
  outline-offset: 0.2rem;
}

.shell {
  width: min(calc(100% - 2rem), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0.55rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--ink-deep);
  border-radius: 0.35rem;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  background: rgba(255, 253, 250, 0.97);
  border-bottom: 1px solid rgba(16, 46, 63, 0.12);
  box-shadow: 0 0.2rem 1rem rgba(16, 46, 63, 0.04);
}

.header-inner {
  position: relative;
  display: flex;
  min-height: 4.75rem;
  align-items: center;
  gap: 0.75rem;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 3.45rem;
  height: 2.35rem;
  object-fit: contain;
}

.brand span {
  display: grid;
  min-width: 0;
  line-height: 1.13;
}

.brand strong,
.brand small {
  overflow-wrap: normal;
  word-break: normal;
}

.brand strong {
  font-size: 0.86rem;
  letter-spacing: 0.015em;
}

.brand small {
  margin-top: 0.18rem;
  color: var(--rust);
  font-size: 0.71rem;
}

.menu-toggle {
  display: inline-flex;
  min-height: 2.75rem;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.55rem 0.75rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 700;
}

.menu-icon {
  display: grid;
  width: 1.1rem;
  gap: 0.2rem;
}

.menu-icon i {
  display: block;
  height: 0.12rem;
  background: currentColor;
  border-radius: 999px;
}

.site-nav {
  position: absolute;
  top: calc(100% + 0.05rem);
  right: 0;
  left: 0;
  display: none;
  padding: 0.65rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 0;
  box-shadow: var(--shadow);
}

.site-nav.is-open,
.site-nav[data-open="true"] {
  display: grid;
}

.site-nav a {
  min-height: 2.9rem;
  padding: 0.7rem 0.8rem;
  color: var(--ink);
  border-bottom: 1px solid #e7e9e5;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a:last-child {
  border-bottom: 0;
}

.header-phone {
  display: none;
  min-height: 2.75rem;
  align-items: center;
  padding: 0.55rem 0.85rem;
  color: var(--white);
  background: var(--ink);
  border-radius: 0.35rem;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  overflow-wrap: normal;
  white-space: nowrap;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 2.35rem 0 2rem;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.96), rgba(242, 239, 232, 0.94)),
    repeating-linear-gradient(90deg, transparent 0 4.9rem, rgba(16, 46, 63, 0.04) 4.9rem 5rem);
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 1.5rem;
  right: -6rem;
  width: 23rem;
  height: 23rem;
  content: "";
  border: 1px solid rgba(182, 111, 38, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 3.2rem rgba(213, 208, 199, 0.14), 0 0 0 6.4rem rgba(182, 111, 38, 0.06);
}

.hero-grid {
  display: grid;
  gap: 1.55rem;
}

.hero-copy {
  position: relative;
  padding-top: 0.9rem;
}

.hero-copy::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 4.5rem;
  height: 0.25rem;
  content: "";
  background: linear-gradient(90deg, var(--ochre) 0 58%, var(--rust) 58%);
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--rust);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
}

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

h1,
h2,
h3 {
  color: var(--ink-deep);
  line-height: 1.12;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h1 {
  max-width: 16ch;
  margin-bottom: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.78rem, 8vw, 3.65rem);
  font-weight: 700;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 0.9rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.62rem, 6vw, 2.65rem);
  letter-spacing: -0.025em;
}

h3 {
  margin-bottom: 0.3rem;
  font-size: 1.02rem;
}

.hero-lead {
  max-width: 38rem;
  margin-bottom: 1.25rem;
  color: #425158;
  font-size: 1rem;
  line-height: 1.56;
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.button {
  display: inline-flex;
  min-height: 3.1rem;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 0.95rem;
  border: 2px solid transparent;
  border-radius: 0.35rem;
  text-align: center;
  text-decoration: none;
  font-size: 0.91rem;
  font-weight: 800;
  line-height: 1.2;
  overflow-wrap: normal;
  word-break: normal;
}

.button--primary {
  color: var(--white);
  background: var(--ochre-deep);
  border-color: var(--ochre-deep);
}

.button--secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

.button:hover {
  transform: translateY(-1px);
}

.image-frame {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--stone);
  border: 1px solid rgba(16, 46, 63, 0.16);
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame figcaption {
  position: absolute;
  right: 0.55rem;
  bottom: 0.55rem;
  padding: 0.32rem 0.52rem;
  color: var(--white);
  background: rgba(9, 33, 47, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0.25rem;
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: normal;
  white-space: nowrap;
}

.image-frame--hero {
  aspect-ratio: 3 / 2;
  border-radius: 0.45rem 3.25rem 0.45rem 0.45rem;
}

.image-frame--hero img {
  object-position: 51% 50%;
}

.flow-strip {
  color: var(--ink);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.flow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.flow-grid > div {
  position: relative;
  display: grid;
  min-height: 7.3rem;
  align-content: center;
  padding: 1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.flow-grid > div:nth-child(2n) {
  border-right: 0;
}

.flow-grid > div:nth-child(n + 3) {
  border-bottom: 0;
}

.flow-grid > div::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 0.22rem;
  content: "";
  background: var(--aggregate);
}

.flow-grid > div:nth-child(2)::before {
  background: #c5b18f;
}

.flow-grid > div:nth-child(3)::before {
  background: var(--ochre);
}

.flow-grid > div:nth-child(4)::before {
  background: var(--rust);
}

.flow-grid span {
  color: var(--rust);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.flow-grid strong,
.flow-grid small {
  display: block;
  overflow-wrap: normal;
  word-break: normal;
}

.flow-grid strong {
  margin: 0.08rem 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.07rem;
}

.flow-grid small {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.section {
  padding: 4.2rem 0;
}

.overview-section {
  background: var(--paper);
}

.overview-grid,
.material-grid,
.situations-grid,
.business-grid,
.process-grid,
.inquiry-grid {
  display: grid;
  gap: 1.7rem;
}

.section-heading {
  position: relative;
  padding-left: 1rem;
}

.section-heading::before {
  position: absolute;
  top: 0.15rem;
  bottom: 0.15rem;
  left: 0;
  width: 0.24rem;
  content: "";
  background: linear-gradient(var(--aggregate) 0 30%, var(--ochre) 30% 67%, var(--rust) 67%);
}

.overview-copy p,
.material-copy > p,
.business-copy > p,
.inquiry-intro > p {
  margin-bottom: 0.9rem;
  color: #48575d;
}

.overview-copy p:last-child,
.material-copy > p:last-of-type,
.business-copy > p:last-of-type {
  margin-bottom: 0;
}

.asset-line {
  display: grid;
  gap: 0;
  margin-top: 2.2rem;
  border: 1px solid var(--line);
  border-left: 0.28rem solid var(--ochre);
}

.asset-line article {
  display: grid;
  grid-template-columns: 2.7rem 1fr;
  gap: 0.8rem;
  padding: 1rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.asset-line article:last-child {
  border-bottom: 0;
}

.asset-line b {
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-size: 0.78rem;
}

.asset-line h3 {
  margin-bottom: 0.16rem;
}

.asset-line p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.45;
}

.transaction-section {
  padding-top: 0;
  background: var(--paper);
}

.transaction-grid {
  display: grid;
  gap: 1rem;
}

.transaction-panel {
  position: relative;
  overflow: hidden;
  padding: 1.55rem;
  border-radius: var(--radius);
}

.transaction-panel::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 5.4rem;
  height: 0.33rem;
  content: "";
}

.transaction-panel--sell {
  color: #eaf1f4;
  background: var(--ink);
  border: 1px solid var(--ink);
}

.transaction-panel--sell::before {
  background: var(--ochre);
}

.transaction-panel--buy {
  background: var(--ochre-light);
  border: 1px solid #ddc19d;
}

.transaction-panel--buy::before {
  background: var(--rust);
}

.panel-label {
  margin-bottom: 0.55rem;
  color: var(--ochre-light);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.transaction-panel--buy .panel-label {
  color: var(--rust);
}

.transaction-panel h2 {
  max-width: 18ch;
  font-size: clamp(1.53rem, 5.5vw, 2.2rem);
}

.transaction-panel--sell h2 {
  color: var(--white);
}

.transaction-panel p:not(.panel-label) {
  position: relative;
  z-index: 1;
}

.transaction-panel--sell p:not(.panel-label) {
  color: #dce7eb;
}

.panel-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 2.8rem;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.3rem;
  color: var(--ink);
  font-weight: 800;
  text-decoration-thickness: 0.1rem;
  text-underline-offset: 0.22rem;
  overflow-wrap: normal;
}

.transaction-panel--sell .panel-link {
  color: var(--white);
}

.panel-link span {
  font-size: 1.2rem;
}

.material-section {
  position: relative;
  overflow: hidden;
  background: var(--stone);
}

.material-section::after {
  position: absolute;
  right: -4rem;
  bottom: -3.5rem;
  width: 18rem;
  height: 8rem;
  content: "";
  background: repeating-linear-gradient(165deg, rgba(157, 77, 46, 0.08) 0 1rem, transparent 1rem 2rem);
  transform: rotate(-4deg);
}

.material-grid {
  position: relative;
  z-index: 1;
  align-items: center;
}

.material-list {
  display: grid;
  margin: 1.25rem 0 0;
  border-top: 1px solid #cec9bf;
}

.material-list div {
  display: grid;
  grid-template-columns: 6.2rem 1fr;
  gap: 0.7rem;
  padding: 0.72rem 0;
  border-bottom: 1px solid #cec9bf;
}

.material-list dt {
  color: var(--ochre-deep);
  font-weight: 800;
  overflow-wrap: normal;
}

.material-list dd {
  margin: 0;
  color: var(--muted);
}

.image-frame--material {
  aspect-ratio: 3 / 2;
  border-radius: 3rem 0.45rem 0.45rem 0.45rem;
}

.image-frame--material img {
  object-position: 50% 52%;
}

.situations-section {
  background: var(--white);
}

.situations-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.situations-list li {
  position: relative;
  display: grid;
  grid-template-columns: 2.65rem 1fr;
  gap: 0.8rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
}

.situations-list li > span {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  color: var(--rust);
  background: var(--ochre-light);
  border-radius: 50%;
  font-size: 0.69rem;
  font-weight: 900;
}

.situations-list h3 {
  margin-bottom: 0.16rem;
}

.situations-list p {
  margin: 0;
  color: var(--muted);
}

.business-section {
  color: #e5edf0;
  background: var(--ink-deep);
}

.business-grid {
  align-items: center;
}

.business-copy h2 {
  color: var(--white);
}

.business-copy > p {
  color: #d8e3e7;
}

.image-frame--business {
  aspect-ratio: 3 / 2;
  border-color: rgba(255, 255, 255, 0.24);
  border-radius: 0.45rem 0.45rem 3rem 0.45rem;
}

.image-frame--business img {
  object-position: 50% 54%;
}

.choice-links {
  display: grid;
  gap: 0.5rem;
  margin-top: 1.3rem;
}

.choice-links a {
  display: grid;
  min-height: 4rem;
  align-content: center;
  padding: 0.72rem 0.85rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 0.23rem solid var(--ochre);
  text-decoration: none;
}

.choice-links strong,
.choice-links span {
  overflow-wrap: normal;
  word-break: normal;
}

.choice-links span {
  color: #c8d6dc;
  font-size: 0.79rem;
}

.process-section {
  position: relative;
  overflow: hidden;
  padding: 4.2rem 0;
  color: var(--white);
  background: var(--rust);
}

.process-section::before {
  position: absolute;
  top: -4rem;
  left: -3rem;
  width: 14rem;
  height: 14rem;
  content: "";
  border: 2.2rem solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.process-grid {
  position: relative;
  z-index: 1;
}

.process-section h2,
.process-section h3 {
  color: var(--white);
}

.eyebrow--light {
  color: #ffe2bd;
}

.process-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 2.7rem 1fr;
  gap: 0.85rem;
  padding: 0.92rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.process-list li > span {
  color: #ffe2bd;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.process-list p {
  margin: 0;
  color: #f7e3da;
}

.inquiry-section {
  background: var(--paper);
}

.inquiry-section:focus {
  outline: none;
}

.inquiry-intro {
  align-self: start;
}

.contact-form {
  display: grid;
  gap: 0.68rem;
  padding: 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 0.35rem solid var(--ochre);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form fieldset {
  min-width: 0;
  margin: 0 0 0.25rem;
  padding: 0;
  border: 0;
}

.contact-form legend {
  margin-bottom: 0.55rem;
  color: var(--ink-deep);
  font-weight: 800;
}

.intent-grid {
  display: grid;
  gap: 0.45rem;
}

.intent-grid label {
  position: relative;
  display: block;
  cursor: pointer;
}

.intent-grid input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.intent-grid span {
  display: flex;
  min-height: 3.15rem;
  align-items: center;
  padding: 0.65rem 0.85rem 0.65rem 2.65rem;
  color: var(--ink);
  background: #f7f7f3;
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.3;
  overflow-wrap: normal;
  word-break: normal;
}

.intent-grid span::before {
  position: absolute;
  top: 50%;
  left: 0.85rem;
  width: 1rem;
  height: 1rem;
  content: "";
  background: var(--white);
  border: 2px solid #879397;
  border-radius: 50%;
  transform: translateY(-50%);
}

.intent-grid input:checked + span {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.intent-grid input:checked + span::before {
  background: var(--ochre);
  border: 0.26rem solid var(--white);
}

.intent-grid input:focus-visible + span {
  outline: 0.2rem solid #e99a32;
  outline-offset: 0.15rem;
}

.contact-form > label:not(.consent),
.personal-grid label {
  display: grid;
  gap: 0.3rem;
  color: var(--ink-deep);
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.7rem 0.8rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid #95a0a4;
  border-radius: 0.3rem;
}

.contact-form textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 0.18rem rgba(16, 46, 63, 0.12);
}

.personal-details {
  margin: 0.3rem 0;
  background: var(--stone);
  border: 1px solid #d6d0c4;
  border-radius: 0.35rem;
}

.personal-details summary {
  min-height: 3.2rem;
  padding: 0.78rem 0.9rem;
  color: var(--ochre-deep);
  cursor: pointer;
  font-weight: 800;
  overflow-wrap: normal;
}

.personal-grid {
  display: grid;
  gap: 0.7rem;
  padding: 0 0.9rem 0.9rem;
}

.consent {
  display: grid;
  grid-template-columns: 1.35rem 1fr;
  gap: 0.65rem;
  align-items: start;
  margin-top: 0.3rem;
  color: #3d4c52;
  font-size: 0.84rem;
  line-height: 1.5;
}

.consent input {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0.16rem 0 0;
  accent-color: var(--ink);
}

.consent a {
  color: var(--ink);
  font-weight: 700;
}

.button--submit {
  width: 100%;
  color: var(--white);
  background: var(--ochre-deep);
  border-color: var(--ochre-deep);
  cursor: pointer;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--rust);
  font-size: 0.83rem;
  font-weight: 700;
}

.contact-section {
  padding: 0 0 4.2rem;
  background: var(--paper);
}

.contact-card {
  display: grid;
  gap: 1.35rem;
  padding: 1.5rem;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  max-width: 19ch;
  margin-bottom: 0.45rem;
  color: var(--white);
  font-size: clamp(1.5rem, 5.5vw, 2.25rem);
}

.contact-card p {
  margin-bottom: 0;
}

.contact-kicker {
  color: #f0c88f;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-data {
  display: grid;
  gap: 0.6rem;
}

.contact-data a {
  display: grid;
  min-width: 0;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  text-decoration: none;
}

.contact-data small {
  color: #f0c88f;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-data strong {
  overflow-wrap: anywhere;
}

.site-footer {
  color: #d7e1e6;
  background: var(--ink-deep);
}

.footer-inner {
  display: flex;
  min-height: 5rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  padding-block: 1rem;
  font-size: 0.78rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner div {
  display: flex;
  gap: 1rem;
}

.footer-inner a {
  text-underline-offset: 0.18rem;
}

@media (min-width: 36rem) {
  .shell {
    width: min(calc(100% - 3rem), var(--shell));
  }

  .brand img {
    width: 4rem;
    height: 2.7rem;
  }

  .brand strong {
    font-size: 0.94rem;
  }

  .brand small {
    font-size: 0.76rem;
  }

  .header-phone {
    display: inline-flex;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-actions .button {
    min-width: 10.5rem;
  }

  .flow-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .flow-grid > div,
  .flow-grid > div:nth-child(2n),
  .flow-grid > div:nth-child(n + 3) {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .flow-grid > div:last-child {
    border-right: 0;
  }

  .asset-line,
  .intent-grid,
  .personal-grid {
    grid-template-columns: 1fr 1fr;
  }

  .asset-line article:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .asset-line article:nth-child(3) {
    border-bottom: 0;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .contact-card {
    padding: 2rem;
  }
}

@media (min-width: 48rem) {
  .hero-grid,
  .overview-grid,
  .material-grid,
  .situations-grid,
  .business-grid,
  .process-grid,
  .inquiry-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    align-items: center;
    gap: 2.4rem;
  }

  .hero-copy {
    order: 2;
    padding-block: 1rem;
  }

  .image-frame--hero {
    order: 1;
  }

  h1 {
    font-size: clamp(2.05rem, 4.5vw, 2.8rem);
  }

  .overview-grid {
    grid-template-columns: minmax(14rem, 0.75fr) minmax(0, 1.25fr);
    gap: 3rem;
  }

  .asset-line {
    grid-template-columns: repeat(4, 1fr);
  }

  .asset-line article,
  .asset-line article:nth-child(odd),
  .asset-line article:nth-child(3) {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .asset-line article:last-child {
    border-right: 0;
  }

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

  .transaction-panel {
    padding: 2rem;
  }

  .material-grid,
  .business-grid {
    gap: 3rem;
  }

  .material-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .situations-grid {
    grid-template-columns: minmax(14rem, 0.7fr) minmax(0, 1.3fr);
    gap: 3rem;
  }

  .business-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  }

  .process-grid {
    grid-template-columns: minmax(14rem, 0.8fr) minmax(0, 1.2fr);
    gap: 3rem;
  }

  .inquiry-grid {
    grid-template-columns: minmax(14rem, 0.72fr) minmax(0, 1.28fr);
    gap: 3rem;
  }

  .inquiry-intro {
    position: sticky;
    top: 7rem;
  }

  .contact-card {
    grid-template-columns: minmax(0, 1.2fr) minmax(17rem, 0.8fr);
    align-items: center;
  }
}

@media (min-width: 64rem) {
  .header-inner {
    min-height: 5.15rem;
    gap: 1.3rem;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav,
  .site-nav.is-open,
  .site-nav[data-open="true"] {
    position: static;
    display: flex;
    margin-left: auto;
    padding: 0;
    align-items: center;
    gap: 0.2rem;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .site-nav a {
    min-height: 2.7rem;
    padding: 0.65rem 0.7rem;
    border: 0;
    border-radius: 0.3rem;
    font-size: 0.82rem;
  }

  .site-nav a:hover {
    background: var(--stone);
  }

  .header-phone {
    margin-left: 0.2rem;
  }

  .hero {
    padding: 4.15rem 0 3.5rem;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-lead {
    font-size: 1.03rem;
  }

  .section,
  .process-section {
    padding-top: 5.3rem;
    padding-bottom: 5.3rem;
  }

  .flow-grid > div {
    min-height: 7.7rem;
    padding: 1.25rem 1.4rem;
  }

  .asset-line {
    margin-top: 3rem;
  }

  .transaction-section {
    padding-top: 0;
  }

  .transaction-panel {
    padding: 2.5rem;
  }

  .situations-list {
    grid-template-columns: 1fr 1fr;
  }

  .situations-list li:nth-child(odd) {
    padding-right: 1.1rem;
    border-right: 1px solid var(--line);
  }

  .situations-list li:nth-child(even) {
    padding-left: 1.1rem;
  }

  .choice-links a {
    padding: 0.72rem;
  }

  .contact-form {
    padding: 2rem;
  }
}

@media (min-width: 82rem) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: 4rem;
  }

  h1 {
    font-size: 3.55rem;
  }

  .choice-links {
    grid-template-columns: repeat(3, 1fr);
  }

  .overview-grid,
  .material-grid,
  .situations-grid,
  .business-grid,
  .process-grid,
  .inquiry-grid {
    gap: 4.4rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
