:root {
  --cream: #f3efe7;
  --cream-deep: #e8e1d5;
  --ink: #24251f;
  --ink-soft: #62655d;
  --sage: #9ea993;
  --sage-dark: #66705f;

  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding: 28px 34px 24px;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header {
  position: relative;
  z-index: 2;
}

.brand {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: -0.02em;
}

.header-link {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.header-link:hover {
  color: var(--ink);
}

.hero-content {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(48px, 7vw, 130px);
  align-items: center;
  padding: 40px 0;
}

.hero-copy {
  max-width: 650px;
  padding-left: clamp(0px, 3vw, 52px);
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--sage-dark);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(72px, 8vw, 138px);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.045em;
}

.intro {
  max-width: 500px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(36, 37, 31, 0.45);
  font-size: 13px;
  transition:
    gap 180ms ease,
    border-color 180ms ease;
}

.cta span {
  font-size: 15px;
}

.cta:hover {
  gap: 22px;
  border-color: var(--ink);
}

.hero-image-wrap {
  position: relative;
  margin: 0;
  height: min(72vh, 820px);
  overflow: hidden;
  background: var(--cream-deep);
}

.hero-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;

  object-position: 50% 57%;

  filter:
    saturate(0.72)
    contrast(0.94)
    brightness(1.05);
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(243, 239, 231, 0.03),
      rgba(102, 112, 95, 0.07)
    );
  pointer-events: none;
}

.site-footer {
  color: var(--ink-soft);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 980px) {

  .hero {
    padding: 22px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 70px 0 50px;
  }

  .hero-copy {
    padding-left: 0;
  }

  h1 {
    font-size: clamp(68px, 17vw, 120px);
  }

  .hero-image-wrap {
    height: 68svh;
  }

  .intro {
    max-width: 520px;
  }
}

@media (max-width: 640px) {

  .hero {
    padding: 18px 16px 18px;
  }

  .brand {
    font-size: 21px;
  }

  .header-link {
    font-size: 10px;
  }

  .hero-content {
    padding: 64px 0 38px;
    gap: 42px;
  }

  .eyebrow {
    margin-bottom: 18px;
  }

  h1 {
    font-size: clamp(62px, 19vw, 96px);
    line-height: 0.86;
  }

  .intro {
    margin-top: 28px;
    font-size: 14px;
  }

  .cta {
    margin-top: 30px;
  }

  .hero-image-wrap {
    height: 62svh;
  }

  .site-footer {
    align-items: flex-end;
    gap: 20px;
  }

  .site-footer span:last-child {
    text-align: right;
  }
}
