:root {
  --awz-blue: #092b4b;
  --awz-blue-deep: #061e35;
  --awz-blue-soft: #dce8ef;
  --earth: #8a4e35;
  --earth-deep: #663924;
  --clay: #c96f48;
  --sand: #e7d2ad;
  --sand-light: #f5ecdc;
  --field: #526b43;
  --field-light: #e3eadc;
  --graphite: #24323b;
  --muted: #5a6870;
  --line: #d7ddd9;
  --paper: #fffdf9;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(9, 43, 75, 0.12);
  --radius: 1.25rem;
  --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(--graphite);
  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(--awz-blue) 0 39%, var(--sand) 39% 65%, var(--clay) 65% 82%, var(--field) 82%);
}

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 #f1a12d;
  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(--awz-blue-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, 249, 0.97);
  border-bottom: 1px solid rgba(9, 43, 75, 0.12);
  box-shadow: 0 0.25rem 1rem rgba(9, 43, 75, 0.035);
}

.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(--awz-blue);
  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(--earth);
  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(--awz-blue);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  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(--awz-blue);
  border-bottom: 1px solid #e8ebe7;
  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(--awz-blue);
  border-radius: 0.45rem;
  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:
    radial-gradient(circle at 93% 12%, rgba(231, 210, 173, 0.6), transparent 30rem),
    linear-gradient(180deg, var(--paper), #faf7f0);
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -14rem;
  bottom: -8.5rem;
  width: 35rem;
  height: 15rem;
  content: "";
  background: linear-gradient(175deg, transparent 0 25%, rgba(138, 78, 53, 0.11) 25% 40%, rgba(231, 210, 173, 0.44) 40% 56%, rgba(82, 107, 67, 0.1) 56% 68%, transparent 68%);
  transform: rotate(-4deg);
}

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

.hero-copy {
  position: relative;
  padding-left: 1rem;
}

.hero-copy::before {
  position: absolute;
  top: 0.15rem;
  bottom: 0.15rem;
  left: 0;
  width: 0.26rem;
  content: "";
  background: linear-gradient(var(--sand) 0 30%, var(--clay) 30% 69%, var(--field) 69%);
  border-radius: 999px;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--earth-deep);
  font-size: 0.76rem;
  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(--awz-blue-deep);
  line-height: 1.12;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

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

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

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

.hero-lead {
  max-width: 39rem;
  margin-bottom: 1.3rem;
  color: #3f4c53;
  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 1rem;
  border: 2px solid transparent;
  border-radius: 0.45rem;
  text-align: center;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  overflow-wrap: normal;
  word-break: normal;
}

.button--primary {
  color: var(--white);
  background: var(--awz-blue);
  border-color: var(--awz-blue);
}

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

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

.image-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--sand-light);
  border: 1px solid rgba(9, 43, 75, 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(6, 30, 53, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0.28rem;
  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.65rem 3.25rem 0.65rem 0.65rem;
}

.image-frame--hero img {
  object-position: 54% 48%;
}

.earth-band {
  position: relative;
  color: var(--white);
  background: var(--earth-deep);
  border-top: 0.42rem solid var(--sand);
  border-bottom: 0.42rem solid #473225;
}

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

.earth-band-grid > div {
  display: grid;
  min-height: 7.1rem;
  align-content: center;
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.19);
  border-bottom: 1px solid rgba(255, 255, 255, 0.19);
}

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

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

.earth-band-grid span {
  color: var(--sand);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

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

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

.earth-band-grid small {
  color: #f1e6d8;
  font-size: 0.72rem;
  line-height: 1.35;
}

.section {
  padding: 4.2rem 0;
}

.overview-section {
  position: relative;
  background: var(--white);
}

.overview-grid,
.shaping-grid,
.scope-grid,
.inquiry-grid,
.process-grid {
  display: grid;
  gap: 1.7rem;
}

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

.section-heading::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 4rem;
  height: 0.2rem;
  content: "";
  background: linear-gradient(90deg, var(--clay), var(--sand));
}

.overview-copy p,
.shaping-copy > p,
.scope-copy > p,
.inquiry-intro > p {
  margin-bottom: 0.9rem;
  color: #48575f;
}

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

.layer-grid {
  display: grid;
  gap: 0.65rem;
  margin-top: 2.2rem;
}

.layer-grid article {
  display: grid;
  grid-template-columns: 2.7rem 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 0.28rem solid var(--earth);
}

.layer-grid article:nth-child(2) {
  border-left-color: var(--clay);
}

.layer-grid article:nth-child(3) {
  border-left-color: var(--field);
}

.layer-grid article:nth-child(4) {
  border-left-color: var(--awz-blue);
}

.layer-grid b {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  color: var(--earth-deep);
  background: var(--sand-light);
  border-radius: 50%;
  font-size: 0.76rem;
}

.layer-grid h3 {
  margin-bottom: 0.18rem;
}

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

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

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

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

.transaction-panel::after {
  position: absolute;
  right: -4rem;
  bottom: -3.5rem;
  width: 11rem;
  height: 6rem;
  content: "";
  border-radius: 50%;
  opacity: 0.35;
}

.transaction-panel--sell {
  background: var(--sand-light);
  border: 1px solid #ddc39a;
}

.transaction-panel--sell::after {
  background: var(--clay);
}

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

.transaction-panel--buy::after {
  background: var(--field);
}

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

.transaction-panel--buy .panel-label {
  color: #3e5834;
}

.transaction-panel h2 {
  max-width: 18ch;
  font-size: clamp(1.55rem, 5.6vw, 2.25rem);
}

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

.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(--awz-blue);
  font-weight: 800;
  text-decoration-thickness: 0.1rem;
  text-underline-offset: 0.22rem;
  overflow-wrap: normal;
}

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

.shaping-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(170deg, #f5efe4 0 77%, #e9dcc7 77%);
}

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

.image-frame--shaping {
  aspect-ratio: 3 / 2;
  border-radius: 2.8rem 0.65rem 0.65rem 0.65rem;
}

.image-frame--shaping img {
  object-position: 50% 55%;
}

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

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

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

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

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

.section-heading--wide {
  max-width: 38rem;
}

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

.situations-list li {
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  gap: 0.85rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.situations-list li > span {
  padding-top: 0.12rem;
  color: var(--clay);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

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

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

.scope-section {
  background: #f2f5f0;
}

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

.choice-links {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.35rem;
}

.choice-links a {
  display: grid;
  min-height: 4rem;
  align-content: center;
  padding: 0.75rem 0.9rem;
  color: var(--awz-blue);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #ccd7c7;
  border-left: 0.25rem solid var(--field);
  text-decoration: none;
}

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

.choice-links span {
  color: var(--muted);
  font-size: 0.8rem;
}

.image-frame--scope {
  aspect-ratio: 3 / 2;
  border-radius: 0.65rem 0.65rem 3.2rem 0.65rem;
}

.image-frame--scope img {
  object-position: 51% 53%;
}

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

.process-section::after {
  position: absolute;
  right: -3rem;
  bottom: -4rem;
  left: -3rem;
  height: 7rem;
  content: "";
  background: linear-gradient(174deg, transparent 0 35%, rgba(201, 111, 72, 0.35) 35% 52%, rgba(231, 210, 173, 0.2) 52% 69%, transparent 69%);
}

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

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

.eyebrow--light {
  color: var(--sand);
}

.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.95rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.process-list li > span {
  color: var(--sand);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

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

.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(--earth);
  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(--awz-blue-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(--awz-blue);
  background: #f8f8f4;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  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 #879298;
  border-radius: 50%;
  transform: translateY(-50%);
}

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

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

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

.contact-form > label:not(.consent),
.personal-grid label {
  display: grid;
  gap: 0.3rem;
  color: var(--awz-blue-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(--graphite);
  background: var(--white);
  border: 1px solid #98a3a6;
  border-radius: 0.35rem;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--awz-blue);
  box-shadow: 0 0 0 0.18rem rgba(9, 43, 75, 0.12);
}

.personal-details {
  margin: 0.3rem 0;
  background: #f4f0e8;
  border: 1px solid #d9cbb5;
  border-radius: 0.45rem;
}

.personal-details summary {
  min-height: 3.2rem;
  padding: 0.78rem 0.9rem;
  color: var(--earth-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: #3d4b52;
  font-size: 0.84rem;
  line-height: 1.5;
}

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

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

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

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--field);
  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(--awz-blue);
  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.3rem);
}

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

.contact-kicker {
  color: var(--sand);
  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: var(--sand);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.site-footer {
  color: #d4dfe5;
  background: var(--awz-blue-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-copy {
    padding-left: 1.35rem;
  }

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

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

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

  .earth-band-grid > div,
  .earth-band-grid > div:nth-child(2n),
  .earth-band-grid > div:nth-child(n + 3) {
    border-right: 1px solid rgba(255, 255, 255, 0.19);
    border-bottom: 0;
  }

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

  .layer-grid,
  .situations-list,
  .intent-grid,
  .personal-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .contact-form {
    padding: 1.5rem;
  }

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

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

  .hero-grid {
    align-items: center;
    gap: 2.3rem;
  }

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

  h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
  }

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

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

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

  .transaction-panel {
    padding: 2rem;
  }

  .shaping-grid,
  .scope-grid {
    gap: 3rem;
  }

  .shaping-copy {
    order: 2;
  }

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

  .scope-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .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.35rem;
    font-size: 0.82rem;
  }

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

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

  .hero {
    padding: 4.2rem 0 3.6rem;
  }

  h1 {
    font-size: 2.8rem;
  }

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

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

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

  .layer-grid {
    margin-top: 3rem;
  }

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

  .transaction-panel {
    padding: 2.5rem;
  }

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

  .situations-list li,
  .situations-list li:nth-child(odd),
  .situations-list li:nth-child(even) {
    min-height: 8.1rem;
    padding: 1.2rem;
    border-right: 1px solid var(--line);
  }

  .situations-list li:nth-child(3n) {
    border-right: 0;
  }

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

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

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

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

  h1 {
    font-size: 3.15rem;
  }

  .overview-grid,
  .shaping-grid,
  .scope-grid,
  .process-grid,
  .inquiry-grid {
    gap: 4.5rem;
  }
}

@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;
  }
}
