:root {
  --navy: #132f49;
  --navy-deep: #0b2237;
  --brick: #9c4738;
  --brick-dark: #79352b;
  --brass: #b78b49;
  --warm: #fbf8f3;
  --paper: #ffffff;
  --mist: #edf1f2;
  --ink: #1c3343;
  --muted: #596b75;
  --line: #ccd4d6;
  --shadow: 0 22px 52px rgba(19, 47, 73, 0.13);
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--warm);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.63;
  overflow-wrap: anywhere;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.026em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.05rem;
  font-size: 1.96rem;
  font-weight: 800;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 7vw, 3.1rem);
  font-weight: 780;
}

h3 {
  margin-bottom: 0.5rem;
  font-size: 1.18rem;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.7rem;
  left: 0.7rem;
  padding: 0.65rem 0.9rem;
  color: var(--paper);
  background: var(--navy-deep);
  transform: translateY(-180%);
}

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

:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 3px;
}

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(251, 248, 243, 0.98);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(calc(100% - 2rem), var(--content));
  min-height: 72px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 0.55rem;
  align-items: center;
}

.domain-mark {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.62rem;
  text-decoration: none;
}

.domain-mark strong,
.domain-mark small {
  display: block;
}

.domain-mark strong {
  font-size: 0.9rem;
}

.domain-mark small {
  display: none;
  color: var(--muted);
  font-size: 0.69rem;
}

.continuity-mark {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  align-items: end;
  padding: 5px;
  background: var(--navy);
}

.continuity-mark i {
  display: block;
  background: var(--paper);
}

.continuity-mark i:nth-child(1) {
  height: 40%;
}

.continuity-mark i:nth-child(2) {
  height: 68%;
  background: var(--brass);
}

.continuity-mark i:nth-child(3) {
  height: 100%;
  background: #d4816e;
}

.awz-logo {
  width: 46px;
  height: 32px;
  display: block;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
}

.awz-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menu-toggle {
  min-width: 44px;
  min-height: 44px;
  padding: 0.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid var(--line);
  font: inherit;
  font-weight: 700;
}

.menu-label {
  display: none;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-icon::before {
  top: -6px;
}

.menu-icon::after {
  top: 6px;
}

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

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

.site-nav a {
  min-height: 44px;
  padding: 0.62rem 0.75rem;
  display: flex;
  align-items: center;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

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

.nav-phone {
  color: var(--brick-dark);
  font-weight: 760;
}

.hero,
.section,
.contact-block,
.site-footer {
  width: min(calc(100% - 2rem), var(--content));
  margin-inline: auto;
}

.hero {
  padding: 1.5rem 0 3rem;
  display: grid;
  gap: 1.15rem;
}

.hero__copy {
  min-width: 0;
  padding: 0.9rem 0.25rem 0.5rem;
}

.eyebrow {
  margin-bottom: 0.65rem;
  color: var(--brick);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero__lead {
  max-width: 61ch;
  margin-bottom: 1.35rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.58;
}

.hero__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.button {
  min-height: 50px;
  padding: 0.72rem 0.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: transparent;
  border: 2px solid var(--navy);
  border-radius: 2px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 760;
  line-height: 1.18;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button--primary,
.button--submit {
  color: var(--paper);
  background: var(--brick);
  border-color: var(--brick);
}

.button:hover {
  border-color: var(--brass);
}

.image-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--mist);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.image-frame::before {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  width: 7px;
  content: "";
  background: var(--brick);
}

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

.image-frame figcaption {
  position: absolute;
  z-index: 2;
  right: 0.7rem;
  bottom: 0.7rem;
  max-width: calc(100% - 1.4rem);
  padding: 0.38rem 0.58rem;
  color: var(--paper);
  background: rgba(11, 34, 55, 0.92);
  font-size: 0.72rem;
  font-weight: 680;
  line-height: 1.25;
}

.image-frame--hero,
.image-frame--inventory,
.image-frame--continuation {
  aspect-ratio: 4 / 3;
}

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

.section {
  padding: 3.9rem 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.orientation {
  border-top: 1px solid var(--line);
}

.orientation__copy {
  color: var(--muted);
}

.continuity-line {
  position: relative;
  margin-top: 2.1rem;
  display: grid;
  gap: 0.8rem;
}

.continuity-line article {
  min-width: 0;
  padding: 1rem 1rem 1rem 1.2rem;
  background: var(--paper);
  border-left: 5px solid var(--navy);
  box-shadow: 0 10px 26px rgba(19, 47, 73, 0.06);
}

.continuity-line article:nth-of-type(2) {
  border-left-color: var(--brass);
}

.continuity-line article:nth-of-type(3) {
  border-left-color: var(--brick);
}

.continuity-line article > span {
  color: var(--brick);
  font-size: 0.72rem;
  font-weight: 800;
}

.continuity-line h3 {
  margin: 0.18rem 0;
}

.continuity-line p {
  margin-bottom: 0;
  color: var(--muted);
}

.continuity-line > i {
  width: 2px;
  height: 22px;
  margin: -0.3rem 0 -0.3rem 1.5rem;
  display: block;
  background: var(--brick);
}

.inventory,
.continuation {
  display: grid;
  gap: 1.8rem;
  align-items: center;
}

.inventory__copy,
.continuation__copy {
  min-width: 0;
}

.inventory__copy > p:not(.eyebrow),
.continuation__copy > p:not(.eyebrow) {
  color: var(--muted);
}

.inventory-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--navy);
}

.inventory-list li {
  padding: 0.72rem 0;
  display: grid;
  gap: 0.12rem;
  border-bottom: 1px solid var(--line);
}

.inventory-list strong {
  color: var(--navy);
}

.inventory-list span {
  color: var(--muted);
  font-size: 0.94rem;
}

.transaction {
  padding-top: 0;
  display: grid;
  gap: 0;
}

.transaction__panel {
  min-width: 0;
  padding: 2.1rem 1rem;
}

.transaction__panel--sell {
  background: var(--paper);
  border-top: 6px solid var(--brick);
}

.transaction__panel--buy {
  color: var(--paper);
  background: var(--navy);
  border-top: 6px solid var(--brass);
}

.transaction__panel--buy .eyebrow {
  color: #e1c48f;
}

.transaction__panel--buy p {
  color: #dce5ea;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--brick-dark);
  font-weight: 760;
  text-decoration-color: var(--brass);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.23rem;
}

.text-link--light {
  color: var(--paper);
}

.situation-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--navy);
}

.situation-list li {
  min-width: 0;
  padding: 1rem 0;
  display: grid;
  grid-template-columns: 3.1rem minmax(0, 1fr);
  gap: 0.65rem;
  border-bottom: 1px solid var(--line);
}

.situation-list span {
  color: var(--brick);
  font-size: 0.75rem;
  font-weight: 800;
}

.situation-list p {
  margin-bottom: 0;
}

.continuation {
  background: var(--paper);
  padding-inline: 1rem;
}

.continuation__copy {
  padding-left: 1rem;
  border-left: 3px solid var(--brick);
}

.continuation__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
}

.contact-path {
  padding-bottom: 4.8rem;
}

.path-steps {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  list-style: none;
}

.path-steps li {
  min-width: 0;
  padding: 1.15rem;
  background: transparent;
  border: 1px solid var(--line);
}

.path-steps span {
  color: var(--brick);
  font-size: 0.75rem;
  font-weight: 800;
}

.path-steps strong {
  display: block;
  margin: 0.28rem 0;
}

.path-steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.inquiry {
  padding-inline: 1rem;
  background: var(--mist);
  border-top: 6px solid var(--brick);
}

.inquiry:focus {
  outline: none;
}

.inquiry:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 5px;
}

.inquiry__intro,
.contact-form {
  min-width: 0;
}

.inquiry__intro {
  margin-bottom: 1.7rem;
}

.contact-form {
  padding: 1rem;
  background: var(--paper);
  border-left: 5px solid var(--navy);
  box-shadow: 0 16px 38px rgba(19, 47, 73, 0.09);
}

fieldset {
  margin: 0 0 1.5rem;
  padding: 0;
  border: 0;
}

legend,
.field label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 750;
}

.intent-grid,
.form-grid {
  display: grid;
  gap: 0.75rem;
}

.intent-card {
  min-width: 0;
  min-height: 54px;
  padding: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--warm);
  border: 1px solid var(--line);
  cursor: pointer;
}

.intent-card:has(input:checked) {
  background: #f3e2dc;
  border-color: var(--brick);
  box-shadow: inset 4px 0 0 var(--brick);
}

.intent-card input,
.consent input {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  accent-color: var(--brick);
}

.field {
  min-width: 0;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #8e9da4;
  font: inherit;
}

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

.field input:focus,
.field textarea:focus {
  border-color: var(--brick);
  outline: 3px solid rgba(156, 71, 56, 0.16);
}

.personal-details {
  margin: 1.5rem 0;
  padding: 1rem;
  background: var(--warm);
  border: 1px solid var(--line);
}

.personal-details summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  font-weight: 750;
  cursor: pointer;
}

.personal-details > p {
  color: var(--muted);
}

.consent {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.consent input {
  margin-top: 0.2rem;
}

.consent a {
  color: var(--brick-dark);
  font-weight: 720;
}

.button--submit {
  width: 100%;
}

.form-status {
  min-height: 1.6rem;
  margin: 0.75rem 0 0;
  color: var(--brick-dark);
  font-weight: 650;
}

.contact-block {
  margin-top: 4rem;
  padding: 2.2rem 1rem;
  display: grid;
  gap: 1.6rem;
  color: var(--paper);
  background: var(--navy-deep);
  border-top: 7px solid var(--brick);
}

.contact-eyebrow {
  margin-bottom: 0.65rem;
  color: #e1c48f;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-block h2 {
  max-width: 16ch;
  font-size: clamp(1.8rem, 6.2vw, 2.9rem);
}

.contact-block p:last-child {
  margin-bottom: 0;
}

.contact-links {
  min-width: 0;
  display: grid;
  gap: 0.65rem;
}

.contact-links a {
  min-width: 0;
  padding: 0.9rem 0;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.contact-links span {
  color: #bdcad1;
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-links strong {
  font-size: 1.05rem;
}

.site-footer {
  padding: 1.35rem 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.7rem 1.25rem;
  color: #dbe4e9;
  background: #071b2b;
}

.site-footer p {
  margin-bottom: 0;
  font-weight: 700;
}

.site-footer nav {
  display: flex;
  gap: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 360px) {
  .menu-label {
    display: inline;
  }

  .awz-logo {
    width: 50px;
    height: 34px;
  }

  h1 {
    font-size: 2.18rem;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero__copy {
    padding-inline: 0.65rem;
  }

  .hero__lead {
    font-size: 1.04rem;
    line-height: 1.63;
  }
}

@media (min-width: 600px) {
  .domain-mark small {
    display: block;
  }

  .hero__actions {
    grid-template-columns: repeat(2, minmax(0, max-content));
  }

  .button {
    padding-inline: 1.2rem;
    font-size: 1rem;
  }

  .continuity-line {
    grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr) 34px minmax(0, 1fr);
    align-items: stretch;
  }

  .continuity-line > i {
    width: 100%;
    height: 2px;
    margin: auto 0;
  }

  .transaction {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .transaction__panel {
    padding: 2.2rem;
  }

  .situation-list,
  .path-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .form-grid,
  .intent-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field--wide {
    grid-column: 1 / -1;
  }

  .continuation,
  .inquiry,
  .contact-form,
  .contact-block {
    padding-inline: 2rem;
  }

  .button--submit {
    width: auto;
  }
}

@media (min-width: 820px) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .header-inner {
    grid-template-columns: minmax(215px, 0.82fr) minmax(0, 2fr) 58px;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav,
  .no-js .site-nav {
    position: static;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .site-nav a {
    min-height: 42px;
    padding: 0.45rem 0.5rem;
    border: 0;
    white-space: nowrap;
  }

  .site-nav .nav-phone {
    margin-left: 0.3rem;
    padding-inline: 0.68rem;
    background: var(--paper);
  }

  .hero {
    padding: 4rem 0;
    grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
    gap: 3.2rem;
    align-items: center;
  }

  h1 {
    font-size: clamp(2.85rem, 4vw, 3.6rem);
  }

  .orientation {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    column-gap: 3.8rem;
  }

  .orientation .continuity-line {
    grid-column: 1 / -1;
  }

  .inventory,
  .continuation {
    grid-template-columns: minmax(430px, 1.06fr) minmax(0, 0.94fr);
    gap: 3.8rem;
  }

  .transaction__panel {
    padding: 3rem;
  }

  .situation-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .continuation__copy {
    grid-column: 1;
    grid-row: 1;
  }

  .continuation .image-frame {
    grid-column: 2;
    grid-row: 1;
  }

  .path-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .inquiry {
    display: grid;
    grid-template-columns: minmax(210px, 0.44fr) minmax(0, 1fr);
    gap: 2.8rem;
    align-items: start;
  }

  .contact-block {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 3rem;
    align-items: end;
  }
}

@media (min-width: 1100px) {
  .header-inner,
  .hero,
  .section,
  .contact-block,
  .site-footer {
    width: min(calc(100% - 4rem), var(--content));
  }

  .section {
    padding-top: 5.2rem;
    padding-bottom: 5.2rem;
  }

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

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