:root {
  color-scheme: light;
  --ink: #171717;
  --muted: #5f625d;
  --paper: #f7f5ef;
  --line: #d9d4ca;
  --accent: #12664f;
  --accent-dark: #0b4738;
  --rust: #a14722;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(18, 102, 79, 0.12), transparent 38%),
    linear-gradient(310deg, rgba(161, 71, 34, 0.14), transparent 42%),
    var(--paper);
}

a {
  color: inherit;
}

.inquiry-page {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: clamp(24px, 5vw, 72px);
}

.hero {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(28px, 6vw, 96px);
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: clamp(3.1rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0;
}

p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.lede {
  color: var(--ink);
  font-size: clamp(1.35rem, 2.5vw, 2.05rem);
  line-height: 1.25;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--accent);
  border-radius: 8px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.button:hover,
.button:focus-visible {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(18, 102, 79, 0.08);
}

.owner {
  align-self: stretch;
  min-height: 390px;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.owner img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
  object-position: center 22%;
}

.owner div {
  padding: 18px;
  border-top: 1px solid var(--line);
}

.owner p {
  margin: 4px 0 0;
  font-size: 0.95rem;
  line-height: 1.45;
}

.owner-name {
  color: var(--ink);
  font-weight: 800;
}

@media (max-width: 820px) {
  .inquiry-page {
    align-items: start;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .owner {
    max-width: 360px;
    min-height: 0;
  }

  .owner img {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .inquiry-page {
    padding: 22px;
  }

  h1 {
    font-size: 2.8rem;
  }

  .actions {
    display: grid;
  }

  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}
