:root {
  --white: #ffffff;
  --brand-gray: #545452;
  --brand-gray-dark: #474745;
  --font-display: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --font-sans: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html,
body {
  min-height: 100%;
  margin: 0;
  background: var(--brand-gray-dark);
}

body { color: var(--white); font-family: var(--font-sans); }
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }

.landing {
  display: grid;
  width: min(100%, 34rem);
  min-height: 100svh;
  grid-template-columns: 1fr;
  margin: 0 auto;
  background: var(--brand-gray);
  box-shadow: 0 0 3rem rgba(24, 24, 23, 0.18);
}

.photo-panel {
  position: relative;
  min-height: clamp(18rem, 42svh, 27rem);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: #c9c9c6;
}

.photo-panel > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 67% center;
}

.photo-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(24, 24, 23, 0.16),
    transparent 26%,
    transparent 76%,
    rgba(24, 24, 23, 0.08)
  );
  pointer-events: none;
}

.photo-caption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.65;
  text-align: right;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
}

.content-panel {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  padding: 1.5rem 1.25rem 1.4rem;
  background: var(--brand-gray);
}

.content-copy { padding: 0.5rem 0 0.65rem; }

.eyebrow {
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

h1 {
  max-width: 13.5ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 9.2vw, 2.85rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.description {
  max-width: 29rem;
  margin: 1.1rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.87rem;
  line-height: 1.65;
}

.contact-list { display: grid; gap: 0.65rem; margin-top: 1.55rem; }

.contact-button {
  display: flex;
  min-height: 4.35rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 0.2rem;
  padding: 0.9rem 1rem;
  transition: background 160ms ease, transform 160ms ease;
}

.contact-button > span:first-child { display: flex; flex-direction: column; }
.contact-button strong { font-size: 0.88rem; font-weight: 600; letter-spacing: 0.01em; }
.contact-button small { margin-top: 0.25rem; font-size: 0.62rem; letter-spacing: 0.07em; opacity: 0.66; }
.contact-button-primary:hover { transform: translateY(-2px); background: rgba(255, 255, 255, 0.1); }
.contact-button-pending { border-color: rgba(255, 255, 255, 0.36); color: rgba(255, 255, 255, 0.62); }
.arrow { font-size: 1.2rem; }
.status-mark { color: rgba(255, 255, 255, 0.44); }

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.54rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-area {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.brand-logo { width: min(10.25rem, 46vw); height: auto; }

@media (min-width: 821px) {
  body { padding: 2rem 0; }
  .landing { min-height: calc(100svh - 4rem); }
  .photo-panel { min-height: 28rem; }
}

@media (max-width: 380px) {
  .content-panel { padding-right: 1rem; padding-left: 1rem; }
  h1 { font-size: 2.08rem; }
  footer { align-items: flex-start; flex-direction: column; gap: 0.3rem; }
}

@media (prefers-reduced-motion: reduce) {
  .contact-button { transition: none; }
}

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