:root {
  --navy: #123448;
  --navy-deep: #082536;
  --blue: #315c70;
  --wine: #933f3e;
  --red: #b65d53;
  --sage: #697b6c;
  --sage-light: #e9efea;
  --ivory: #fbf7f1;
  --slate-light: #eef2f3;
  --ink: #21323a;
  --muted: #5a686e;
  --line: #d1dade;
  --white: #ffffff;
  --shadow: 0 22px 56px rgba(11, 43, 59, 0.14);
  --shell: 75rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button,
a,
summary,
input,
textarea {
  outline-offset: 0.22rem;
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--navy-deep);
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid rgba(18, 52, 72, 0.15);
  background: rgba(255, 255, 255, 0.97);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 4.7rem;
  gap: 0.8rem;
}

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

.brand img {
  width: 3rem;
  height: 2rem;
  flex: 0 0 auto;
  object-fit: contain;
}

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

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

.brand small {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.69rem;
}

.menu-toggle {
  display: inline-flex;
  min-height: 2.8rem;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid var(--line);
  border-radius: 0.28rem;
  padding: 0.55rem 0.75rem;
  color: var(--navy);
  background: var(--ivory);
  cursor: pointer;
}

.menu-icon {
  display: grid;
  width: 1.15rem;
  gap: 0.22rem;
}

.menu-icon i {
  display: block;
  height: 2px;
  background: currentColor;
}

.site-nav {
  display: none;
  grid-column: 1 / -1;
  padding-bottom: 1rem;
}

.site-nav.is-open {
  display: grid;
}

.site-nav a {
  min-height: 2.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.header-phone {
  display: none;
}

.hero {
  padding: 1.45rem 0 2.3rem;
  background:
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1rem), rgba(147, 63, 62, 0.07) calc(100% - 1rem)),
    var(--ivory);
  background-size: 5rem 100%, auto;
}

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

.eyebrow,
.contact-kicker,
.panel-label {
  margin: 0 0 0.55rem;
  color: var(--wine);
  font-size: 0.71rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.1;
}

h1 {
  max-width: 20ch;
  margin-bottom: 0.75rem;
  font-size: clamp(1.65rem, 6.8vw, 2.15rem);
  letter-spacing: -0.043em;
  overflow-wrap: normal;
  word-break: normal;
}

h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.72rem, 6.7vw, 2.82rem);
  letter-spacing: -0.034em;
}

h3 {
  margin-bottom: 0.34rem;
  font-size: 1.04rem;
}

.hero-lead {
  max-width: 41rem;
  margin-bottom: 1rem;
  color: #485961;
  font-size: 0.95rem;
  line-height: 1.5;
}

.hero-actions {
  display: grid;
  gap: 0.52rem;
}

.button {
  display: inline-flex;
  min-height: 2.95rem;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--blue);
  border-radius: 0.24rem;
  padding: 0.7rem 1rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  overflow-wrap: normal;
  word-break: normal;
  cursor: pointer;
}

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

.button--secondary {
  color: var(--navy);
  background: var(--white);
}

.button:hover {
  border-color: var(--wine);
  color: var(--white);
  background: var(--wine);
}

.image-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--slate-light);
  box-shadow: var(--shadow);
}

.image-frame img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.image-frame figcaption {
  position: absolute;
  right: 0.62rem;
  bottom: 0.62rem;
  max-width: calc(100% - 1.24rem);
  padding: 0.28rem 0.46rem;
  color: var(--white);
  background: rgba(8, 37, 54, 0.92);
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1.2;
}

.image-frame--hero {
  border-left: 0.42rem solid var(--red);
  border-radius: 0 0.35rem 0.35rem 0;
  clip-path: polygon(0 0, 100% 0, 100% 91%, 94% 100%, 0 100%);
}

.work-band {
  color: var(--white);
  background: var(--navy-deep);
}

.work-band-grid {
  display: grid;
}

.work-band-grid > div {
  display: grid;
  grid-template-columns: 2rem 1fr;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  gap: 0 0.55rem;
}

.work-band-grid span {
  grid-row: 1 / 3;
  color: #ee9f98;
  font-size: 0.7rem;
  font-weight: 900;
}

.work-band-grid strong {
  font-size: 0.88rem;
}

.work-band-grid small {
  color: #c7d6dc;
  font-size: 0.76rem;
}

.section {
  padding: 4rem 0;
}

.overview-grid,
.operations-grid,
.base-grid,
.inquiry-grid {
  display: grid;
  gap: 2rem;
}

.section-heading {
  max-width: 35rem;
}

.overview-copy p,
.operations-copy > p,
.base-copy > p,
.inquiry-intro > p {
  color: var(--muted);
}

.business-line {
  display: grid;
  margin-top: 1.8rem;
  border-top: 1px solid var(--line);
}

.business-line article {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.business-line b {
  color: var(--wine);
  font-size: 0.84rem;
}

.business-line p {
  margin: 0.18rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.transaction-section {
  background: var(--sage-light);
}

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

.transaction-panel {
  padding: 1.5rem;
  border-top: 0.36rem solid var(--wine);
  background: var(--white);
  box-shadow: 0 13px 35px rgba(11, 43, 59, 0.08);
}

.transaction-panel--buy {
  border-color: var(--sage);
}

.transaction-panel p:not(.panel-label) {
  color: var(--muted);
}

.panel-link {
  display: inline-flex;
  min-height: 2.8rem;
  align-items: center;
  gap: 0.45rem;
  border-bottom: 2px solid var(--wine);
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: normal;
  word-break: normal;
}

.operations-section {
  background: var(--ivory);
}

.image-frame--operations {
  border-bottom: 0.42rem solid var(--sage);
  border-radius: 0.35rem 0.35rem 0 0;
}

.operations-list {
  margin: 1.2rem 0 0;
  border-top: 1px solid var(--line);
}

.operations-list > div {
  display: grid;
  padding: 0.72rem 0;
  border-bottom: 1px solid var(--line);
  gap: 0.18rem;
}

.operations-list dt {
  color: var(--sage);
  font-weight: 900;
}

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

.section-heading--wide {
  max-width: 44rem;
  margin-bottom: 1.55rem;
}

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

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

.situations-list li > span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
}

.situations-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.base-section {
  background:
    linear-gradient(90deg, rgba(147, 63, 62, 0.055), transparent 44%),
    var(--slate-light);
}

.choice-links {
  display: grid;
  margin-top: 1.3rem;
  border-top: 1px solid var(--line);
}

.choice-links a {
  display: grid;
  min-height: 4rem;
  align-content: center;
  padding: 0.65rem 0.25rem;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  text-decoration: none;
}

.choice-links a:hover strong {
  color: var(--wine);
}

.choice-links strong {
  font-size: 0.9rem;
}

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

.image-frame--base {
  border-right: 0.42rem solid var(--red);
  clip-path: polygon(0 8%, 6% 0, 100% 0, 100% 100%, 0 100%);
}

.process-section {
  padding: 3.4rem 0;
  color: var(--white);
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(255, 255, 255, 0.035) 50%, transparent 50.2%),
    var(--navy-deep);
  background-size: 6rem 100%, auto;
}

.process-grid {
  display: grid;
  gap: 1.7rem;
}

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

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

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

.process-list li {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  gap: 0.6rem;
}

.process-list li > span {
  color: #ee9f98;
  font-size: 0.72rem;
  font-weight: 900;
}

.process-list p {
  margin-bottom: 0;
  color: #c7d6dc;
  font-size: 0.9rem;
}

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

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

.contact-form {
  padding: 1.25rem;
  border-top: 4px solid var(--wine);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form fieldset {
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
}

.contact-form legend,
.contact-form > label:not(.consent) {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-form > input,
.contact-form > textarea,
.personal-grid input {
  width: 100%;
  min-height: 2.85rem;
  margin-bottom: 1rem;
  border: 1px solid #b5c2c7;
  border-radius: 0.2rem;
  padding: 0.65rem 0.72rem;
  color: var(--ink);
  background: var(--white);
}

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

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

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

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

.intent-grid span {
  display: flex;
  min-height: 3rem;
  align-items: center;
  border: 1px solid #b5c2c7;
  padding: 0.65rem 0.75rem;
  color: var(--navy);
  font-size: 0.87rem;
  font-weight: 800;
  overflow-wrap: normal;
  word-break: normal;
}

.intent-grid input:checked + span {
  border-color: var(--wine);
  color: var(--white);
  background: var(--wine);
  box-shadow: inset 0 0 0 1px var(--wine);
}

.intent-grid input:focus-visible + span {
  outline: 3px solid var(--blue);
  outline-offset: 0.2rem;
}

.personal-details {
  margin: 0.1rem 0 1rem;
  border: 1px solid var(--line);
  background: var(--slate-light);
}

.personal-details summary {
  min-height: 2.9rem;
  padding: 0.7rem 0.8rem;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
}

.personal-grid {
  display: grid;
  padding: 0.75rem;
  gap: 0 0.8rem;
}

.personal-grid label {
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
}

.personal-grid input {
  display: block;
  margin-top: 0.3rem;
}

.consent {
  display: grid;
  grid-template-columns: 1.3rem 1fr;
  align-items: start;
  margin-bottom: 1rem;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.84rem;
}

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

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

.button--submit {
  width: 100%;
  border-color: var(--wine);
  color: var(--white);
  background: var(--wine);
}

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

.contact-section {
  padding: 2.5rem 0;
  background: var(--sage-light);
}

.contact-card {
  display: grid;
  padding: 1.5rem;
  color: var(--white);
  background: var(--blue);
  box-shadow: var(--shadow);
  gap: 1.4rem;
}

.contact-kicker {
  color: #f4b4ae;
}

.contact-card h2 {
  max-width: 17ch;
  margin-bottom: 0.55rem;
  color: var(--white);
  font-size: clamp(1.7rem, 6.6vw, 2.58rem);
}

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

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

.contact-data a {
  display: grid;
  min-height: 3.7rem;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  padding: 0.65rem 0.8rem;
  text-decoration: none;
}

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

.contact-data strong {
  font-size: 0.92rem;
  overflow-wrap: normal;
  word-break: normal;
}

.site-footer {
  color: #cfdee4;
  background: var(--navy-deep);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
  gap: 0.8rem 1.2rem;
  font-size: 0.77rem;
}

.footer-inner p {
  margin: 0;
}

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

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

@media (min-width: 36rem) {
  .hero {
    padding: 2.35rem 0 3rem;
  }

  h1 {
    margin-bottom: 1rem;
    font-size: clamp(2.25rem, 5vw, 2.9rem);
  }

  .hero-lead {
    margin-bottom: 1.3rem;
    font-size: 1.02rem;
    line-height: 1.58;
  }

  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 26rem;
    gap: 0.65rem;
  }

  .work-band-grid,
  .business-line,
  .situations-list,
  .personal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-band-grid > div:nth-child(odd) {
    padding-right: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  .work-band-grid > div:nth-child(even) {
    padding-left: 1rem;
  }

  .business-line,
  .situations-list {
    border-left: 1px solid var(--line);
  }

  .business-line article,
  .situations-list li {
    padding-inline: 1rem;
    border-right: 1px solid var(--line);
  }

  .transaction-panel,
  .contact-form {
    padding: 1.8rem;
  }

  .operations-list > div {
    grid-template-columns: minmax(7rem, 0.34fr) 1fr;
    gap: 0.9rem;
  }

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

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

  .section {
    padding-block: 5rem;
  }

  .overview-grid {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 4rem;
  }

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

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

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

  .base-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 4rem;
  }

  .process-grid {
    grid-template-columns: minmax(14rem, 0.65fr) minmax(0, 1.35fr);
    align-items: start;
    gap: 4rem;
  }

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

  .process-list li {
    grid-template-columns: 1fr;
    padding: 0.9rem 1.15rem;
    border-right: 1px solid rgba(255, 255, 255, 0.17);
    gap: 0.35rem;
  }

  .process-list li:last-child {
    border-right: 0;
  }

  .inquiry-grid {
    grid-template-columns: minmax(15rem, 0.65fr) minmax(0, 1.35fr);
    align-items: start;
    gap: 4rem;
  }

  .contact-card {
    grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
    align-items: center;
    padding: 2rem;
    gap: 2rem;
  }
}

@media (min-width: 64rem) {
  .header-inner {
    grid-template-columns: minmax(13rem, auto) 1fr auto;
    min-height: 5.2rem;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    grid-column: auto;
    justify-content: center;
    padding: 0;
    gap: 1.5rem;
  }

  .site-nav a {
    min-height: auto;
    padding: 0.45rem 0;
    border-bottom: 2px solid transparent;
    font-size: 0.87rem;
  }

  .site-nav a:hover {
    border-color: var(--wine);
  }

  .header-phone {
    display: inline-flex;
    min-height: 2.9rem;
    align-items: center;
    border-radius: 0.24rem;
    padding: 0.65rem 0.9rem;
    color: var(--white);
    background: var(--navy);
    font-size: 0.86rem;
    font-weight: 800;
    text-decoration: none;
  }

  .hero {
    padding-block: 4.1rem;
  }

  .hero-grid {
    grid-template-columns: minmax(29rem, 0.96fr) minmax(0, 1.04fr);
    align-items: center;
    gap: 4.2rem;
  }

  .hero-copy {
    grid-column: 2;
    grid-row: 1;
  }

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

  .image-frame--hero img {
    min-height: 28rem;
  }

  h1 {
    max-width: 13ch;
    font-size: 2.8rem;
  }

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

  .work-band-grid > div {
    padding: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 0;
  }

  .work-band-grid > div:first-child {
    padding-left: 0;
  }

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

  .transaction-panel {
    padding: 2.35rem;
  }

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

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

@media (min-width: 82rem) {
  .site-nav {
    gap: 1.9rem;
  }

  .hero-grid,
  .operations-grid,
  .base-grid {
    gap: 5.2rem;
  }

  h1 {
    font-size: 3.5rem;
  }
}

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