:root {
  color-scheme: light;
  --navy: #101a32;
  --navy-soft: #1a2744;
  --ink: #242033;
  --cream: #f6eedf;
  --paper: #fbf7ef;
  --gold: #b78a45;
  --gold-light: #d8b77e;
  --rust: #8f3e2f;
  --muted: #696270;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", sans-serif;
}

.page-shell {
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(360px, 0.92fr) minmax(540px, 1.08fr);
}

.brand-panel {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 5rem);
  background:
    radial-gradient(circle at 45% 38%, rgba(183, 138, 69, 0.2), transparent 34%),
    linear-gradient(145deg, #182544 0%, #101a32 55%, #0a1123 100%);
}

.brand-panel::before,
.brand-panel::after {
  position: absolute;
  width: 33rem;
  height: 33rem;
  border: 1px solid rgba(216, 183, 126, 0.12);
  border-radius: 50%;
  content: "";
}

.brand-panel::after {
  width: 26rem;
  height: 26rem;
}

.brand-glow {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
}

.brand-mark {
  position: relative;
  z-index: 1;
  width: min(100%, 580px);
  border: 1px solid rgba(216, 183, 126, 0.35);
  border-radius: 4px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.34), 0 0 0 10px rgba(255, 255, 255, 0.03);
}

.content-panel {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(3rem, 7vw, 7rem) clamp(2rem, 7vw, 7.5rem) 2rem;
  background:
    linear-gradient(rgba(183, 138, 69, 0.05) 1px, transparent 1px),
    var(--paper);
  background-size: 100% 5rem;
}

.content-wrap {
  width: min(100%, 680px);
  margin: auto 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.5rem;
  color: var(--rust);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 2.6rem;
  height: 1px;
  background: var(--gold);
}

h1 {
  max-width: 650px;
  margin: 0;
  color: var(--navy);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.4rem, 6vw, 6.8rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.intro {
  max-width: 590px;
  margin: 2rem 0 2.2rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.75;
}

.status-card {
  display: flex;
  gap: 1rem;
  max-width: 590px;
  margin-bottom: 2rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(183, 138, 69, 0.35);
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.5);
}

.status-icon {
  display: grid;
  flex: 0 0 2.35rem;
  height: 2.35rem;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.status-title {
  margin: 0 0 0.35rem;
  color: var(--navy);
  font-weight: 600;
}

.status-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 1.25rem;
  background: var(--navy);
  color: white;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.contact-button:hover {
  background: var(--rust);
  transform: translateY(-2px);
}

.contact-button svg {
  width: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.email-link {
  display: block;
  width: fit-content;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.86rem;
  text-underline-offset: 3px;
}

.location {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.4rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.location svg {
  width: 1.15rem;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.7;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(36, 32, 51, 0.12);
  color: #807986;
  font-size: 0.72rem;
}

.footer-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  font-style: italic;
}

@media (max-width: 900px) {
  .page-shell {
    grid-template-columns: 1fr;
  }

  .brand-panel {
    min-height: auto;
    padding: 2.5rem;
  }

  .brand-mark {
    width: min(82vw, 480px);
  }

  .content-panel {
    min-height: auto;
    padding: 4.5rem 1.5rem 1.5rem;
  }
}

@media (max-width: 520px) {
  .brand-panel {
    padding: 1.3rem;
  }

  .brand-mark {
    width: 100%;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.5rem);
  }

  .contact-button {
    justify-content: space-between;
    width: 100%;
  }

  footer {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
