:root {
  color-scheme: light;
  --ink: #191713;
  --muted: #5d5a53;
  --paper: #faf7f0;
  --line: rgba(25, 23, 19, 0.18);
  --accent: #8a4c37;
  --accent-dark: #673625;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

.page-shell {
  min-height: 100svh;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: clamp(28px, 5vw, 72px);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(250, 247, 240, 0.94) 0%, rgba(250, 247, 240, 0.72) 39%, rgba(250, 247, 240, 0.1) 72%),
    linear-gradient(0deg, rgba(25, 23, 19, 0.18), transparent 46%);
}

.hero__content {
  position: relative;
  width: min(680px, 100%);
  padding-bottom: clamp(20px, 7vh, 76px);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--accent-dark);
  font-size: clamp(0.82rem, 1.3vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 13vw, 10.5rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: 0;
}

.intro {
  max-width: 28rem;
  margin: clamp(22px, 4vw, 34px) 0 28px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2.1vw, 1.45rem);
  line-height: 1.5;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  border-bottom: 1px solid var(--line);
  color: var(--accent-dark);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

.contact-link:focus-visible {
  outline: 3px solid rgba(138, 76, 55, 0.34);
  outline-offset: 6px;
}

@media (max-width: 720px) {
  .hero {
    align-items: start;
    padding: 28px 22px;
  }

  .hero__image {
    object-position: 58% center;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(250, 247, 240, 0.97) 0%, rgba(250, 247, 240, 0.82) 48%, rgba(250, 247, 240, 0.18) 100%),
      linear-gradient(0deg, rgba(25, 23, 19, 0.12), transparent 42%);
  }

  .hero__content {
    padding-top: 20px;
    padding-bottom: 0;
  }

  h1 {
    font-size: clamp(3.7rem, 18vw, 6rem);
  }
}
