:root {
  --charcoal: #171814;
  --charcoal-soft: #20211d;
  --paper: #f1ecdf;
  --paper-dim: #c9c1b3;
  --gold: #d9b44a;
  --copper: #b07a3b;
  --rule: rgba(217, 180, 74, 0.28);
}

* { box-sizing: border-box; }

html { color-scheme: dark; }

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 16%, rgba(217, 180, 74, 0.09), transparent 28rem),
    linear-gradient(145deg, #10110e, #24241f);
  color: var(--paper);
  font-family: Inter, Aptos, "Segoe UI", sans-serif;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 42px);
}

.holding-card {
  width: min(1440px, 100%);
  min-height: min(860px, calc(100vh - clamp(28px, 6vw, 84px)));
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(480px, 1.12fr);
  overflow: hidden;
  background: var(--charcoal);
  border: 1px solid var(--rule);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.38);
}

.image-panel {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #2a2922;
}

.image-panel > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 62%;
  filter: saturate(0.55) contrast(1.08) brightness(0.7);
  transform: scale(1.025);
}

.image-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 21, 17, 0.08), rgba(20, 21, 17, 0.74)),
    linear-gradient(110deg, transparent 35%, rgba(176, 122, 59, 0.24));
  mix-blend-mode: multiply;
}

.contours {
  position: absolute;
  inset: -15%;
  opacity: 0.2;
  background: repeating-radial-gradient(
    ellipse at 56% 42%,
    transparent 0 22px,
    rgba(241, 236, 223, 0.42) 23px 24px,
    transparent 25px 49px
  );
  transform: rotate(-12deg) scale(1.1);
}

.image-note {
  position: absolute;
  left: clamp(24px, 4vw, 58px);
  bottom: clamp(24px, 4vw, 48px);
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font: 600 0.68rem/1.2 ui-monospace, "SFMono-Regular", Consolas, monospace;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.content-panel {
  min-height: 100%;
  padding: clamp(30px, 5vw, 76px) clamp(28px, 6vw, 92px) clamp(24px, 4vw, 50px);
  display: flex;
  flex-direction: column;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66L28 100' fill='none' stroke='rgba(217,180,74,0.065)' stroke-width='1'/%3E%3Cpath d='M28 0L28 34L0 50L0 84L28 100L56 84L56 50L28 34' fill='none' stroke='rgba(217,180,74,0.04)' stroke-width='1'/%3E%3C/svg%3E"),
    var(--charcoal);
}

.brand img {
  display: block;
  width: clamp(170px, 20vw, 238px);
  height: auto;
}

.message {
  margin: auto 0;
  padding: clamp(56px, 8vh, 110px) 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--gold);
  font: 700 0.7rem/1.2 ui-monospace, "SFMono-Regular", Consolas, monospace;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

h1 {
  margin: 0;
  max-width: 14ch;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.15rem, 6vw, 6.8rem);
  font-weight: 400;
  line-height: 0.93;
  letter-spacing: -0.055em;
}

h1 em {
  color: var(--gold);
  font-weight: 400;
}

.lead {
  max-width: 36rem;
  margin: 34px 0;
  color: var(--paper-dim);
  font-size: clamp(1.02rem, 1.5vw, 1.24rem);
  line-height: 1.65;
}

.contact {
  width: min(100%, 510px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 20px;
  align-items: center;
  padding: 19px 0;
  color: var(--paper);
  text-decoration: none;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  transition: color 180ms ease, padding 180ms ease, border-color 180ms ease;
}

.contact span {
  color: var(--paper-dim);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact strong {
  grid-column: 1;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 600;
}

.contact b {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 400;
}

.contact:hover,
.contact:focus-visible {
  color: var(--gold);
  border-color: rgba(217, 180, 74, 0.7);
  padding-left: 12px;
  padding-right: 12px;
  outline: none;
}

footer {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(241, 236, 223, 0.11);
  color: #8e8a80;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 850px) {
  .page-shell { padding: 0; }
  .holding-card {
    min-height: 100vh;
    grid-template-columns: 1fr;
    border: 0;
  }
  .image-panel {
    min-height: 34vh;
    max-height: 390px;
    grid-row: 2;
  }
  .content-panel { min-height: 66vh; }
  .message { padding: 54px 0 62px; }
  h1 { font-size: clamp(3rem, 13vw, 5.8rem); }
}

@media (max-width: 520px) {
  .content-panel { padding: 24px 22px 28px; }
  .brand img { width: 160px; }
  .message { padding: 58px 0; }
  h1 { font-size: clamp(2.8rem, 14vw, 4.6rem); }
  .lead { margin: 28px 0; }
  footer { gap: 7px 14px; }
}

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