:root {
  --white: #ffffff;
  --canvas: #eef3f7;
  --surface: #f7f9fb;
  --navy: #062744;
  --navy-deep: #041b30;
  --navy-soft: #44596d;
  --gold: #c99a3d;
  --gold-light: #e5bf68;
  --line: #d9e2e9;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--canvas);
}

body {
  margin: 0;
  color: var(--navy);
  background: var(--canvas);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

.landing {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(630px, 58%) minmax(420px, 42%);
  border: 12px solid var(--canvas);
  background: var(--white);
}

.content-panel {
  position: relative;
  min-height: calc(100svh - 24px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  padding: 31px clamp(56px, 5vw, 88px) 25px;
  background: var(--white);
}

.content-panel::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  height: 1px;
  background: var(--gold);
}

.topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 34px;
}

.brand {
  width: clamp(145px, 11vw, 184px);
  display: inline-flex;
  transition: transform 180ms ease;
}

.brand:hover {
  transform: translateY(-2px);
}

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

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: var(--navy);
  font-size: 10px;
  font-weight: 680;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.status-dot {
  position: relative;
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
}

.status-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(201, 154, 61, 0.5);
  border-radius: inherit;
  animation: pulse 2.4s ease-out infinite;
}

.hero-copy {
  align-self: center;
  width: min(100%, 710px);
  padding: clamp(38px, 5.3vh, 68px) 0 36px;
  animation: reveal 650ms ease-out both;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 21px;
  color: #946718;
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.27em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--gold);
}

h1 {
  max-width: 670px;
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 5.25vw, 84px);
  font-weight: 400;
  letter-spacing: -0.054em;
  line-height: 0.95;
}

h1 span,
h1 em {
  display: block;
}

h1 em {
  max-width: 630px;
  margin-top: 0.1em;
  font-size: 0.77em;
  font-weight: 400;
  line-height: 1.04;
}

.lead {
  max-width: 600px;
  margin: 27px 0 0;
  color: var(--navy-soft);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.66;
}

.proof-list {
  max-width: 635px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 25px;
  border-block: 1px solid var(--line);
}

.proof-list > div {
  min-height: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 15px 0 18px;
}

.proof-list > div:first-child {
  padding-left: 0;
}

.proof-list > div + div {
  border-left: 1px solid var(--line);
}

.proof-list strong {
  position: relative;
  color: var(--navy);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-list strong::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 8px 1px 0;
  border-radius: 50%;
  background: var(--gold);
}

.proof-list span {
  margin-top: 5px;
  color: #607184;
  font-size: 9px;
  line-height: 1.35;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  min-height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 3px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button svg:last-child {
  width: 20px;
  margin-left: 4px;
  color: var(--gold-light);
  transition: transform 180ms ease;
}

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

.button:hover svg:last-child {
  transform: translateX(4px);
}

.button-primary {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 14px 30px rgba(6, 39, 68, 0.17);
}

.button-primary:hover {
  background: #0b355b;
  box-shadow: 0 18px 36px rgba(6, 39, 68, 0.23);
}

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

.button-secondary:hover {
  color: #8d641a;
  border-color: var(--gold);
  background: #fffdf8;
}

.bottom-area {
  align-self: end;
}

.contact-line {
  min-height: 48px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid var(--line);
  color: #5b6d7e;
  font-size: 9px;
}

.contact-label {
  margin-right: auto;
  color: var(--navy);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-line a {
  text-decoration: none;
  transition: color 160ms ease;
}

.contact-line a:hover {
  color: var(--navy);
}

.visual-panel {
  position: relative;
  min-height: calc(100svh - 24px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  margin: 0;
  padding: 18px;
  background: var(--surface);
}

.visual-panel > img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  object-position: 54% center;
  animation: image-enter 1.05s ease-out both;
}

.image-vignette {
  position: absolute;
  inset: 18px 18px 108px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 72%, rgba(4, 27, 48, 0.13));
}

.visual-panel figcaption {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 20px;
  color: #fff;
  background: var(--navy-deep);
  border-top: 3px solid var(--gold);
}

.visual-panel figcaption span {
  max-width: 350px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 1.7vw, 28px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.03;
}

.visual-panel figcaption small {
  max-width: 120px;
  color: #f2d58e;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-align: right;
  text-transform: uppercase;
}

.button:focus-visible,
.brand:focus-visible,
.contact-line a:focus-visible {
  outline: 3px solid rgba(201, 154, 61, 0.4);
  outline-offset: 5px;
}

@keyframes pulse {
  0% {
    opacity: 0.9;
    transform: scale(0.7);
  }
  75%,
  100% {
    opacity: 0;
    transform: scale(1.45);
  }
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes image-enter {
  from {
    opacity: 0.72;
    transform: scale(1.025);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1120px) {
  .landing {
    grid-template-columns: minmax(550px, 59%) minmax(350px, 41%);
  }

  .content-panel {
    padding-inline: 42px;
  }

  h1 {
    font-size: clamp(52px, 5.6vw, 70px);
  }

  .status {
    font-size: 9px;
  }

  .proof-list > div {
    padding-inline: 10px;
  }

  .proof-list strong {
    font-size: 9px;
  }

  .proof-list span {
    font-size: 8px;
  }

  .visual-panel figcaption {
    display: block;
  }

  .visual-panel figcaption small {
    display: block;
    max-width: none;
    margin-top: 7px;
    text-align: left;
  }

  .contact-label {
    display: none;
  }
}

@media (max-width: 840px) {
  .landing {
    display: block;
    border-width: 8px;
  }

  .content-panel {
    min-height: auto;
    padding: 26px 24px 24px;
  }

  .content-panel::after {
    width: 100%;
  }

  .topbar {
    align-items: center;
  }

  .brand {
    width: 145px;
  }

  .status {
    margin-top: 0;
  }

  .hero-copy {
    padding: 59px 0 54px;
  }

  .eyebrow {
    font-size: 9px;
  }

  h1 {
    max-width: 650px;
    font-size: clamp(50px, 11.8vw, 72px);
  }

  .visual-panel {
    min-height: 72svh;
    padding: 16px;
  }

  .visual-panel > img {
    min-height: 58svh;
  }

  .image-vignette {
    inset: 16px 16px 103px;
  }
}

@media (max-width: 560px) {
  .content-panel {
    padding-inline: 19px;
  }

  .brand {
    width: 122px;
  }

  .status {
    max-width: 125px;
    white-space: normal;
    line-height: 1.3;
  }

  .hero-copy {
    padding: 51px 0 46px;
  }

  .eyebrow {
    line-height: 1.5;
  }

  h1 {
    font-size: clamp(45px, 13.5vw, 61px);
    line-height: 0.97;
  }

  h1 em {
    font-size: 0.74em;
  }

  .lead {
    margin-top: 24px;
    font-size: 14px;
  }

  .proof-list {
    display: block;
    padding: 9px 0;
  }

  .proof-list > div {
    min-height: 46px;
    padding: 0;
  }

  .proof-list > div + div {
    border-left: 0;
  }

  .proof-list span {
    font-size: 9px;
  }

  .actions {
    margin-top: 24px;
  }

  .button {
    width: 100%;
  }

  .contact-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 16px 0;
    font-size: 10px;
  }

  .contact-line > span:not(.contact-label) {
    display: none;
  }

  .visual-panel {
    min-height: 66svh;
  }

  .visual-panel > img {
    min-height: 52svh;
  }

  .visual-panel figcaption {
    min-height: 90px;
    padding-inline: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
