:root {
  --ink: #141414;
  --muted: #5f5b56;
  --paper: #f6f2ec;
  --line: rgba(20, 20, 20, 0.18);
  --white: #fffaf4;
  --accent: #7b2d25;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

a:hover,
a:focus-visible {
  color: var(--accent);
}

a:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 5px;
}

.page-shell {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  isolation: isolate;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-shell::before {
  z-index: -2;
  background-image: url("assets/marie-serren-abstract.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
  opacity: 0.6;
}

.page-shell::after {
  z-index: -1;
  background: rgba(255, 250, 244, 0.32);
}

.site-header,
.site-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 48px;
}

.brand {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.site-nav,
.contact-row,
.site-footer {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(100svh - 144px);
}

.hero-media {
  display: none;
}

.hero-copy {
  width: min(720px, calc(100% - 96px));
  margin-left: 48px;
  padding: 56px 0;
}

.eyebrow {
  margin: 0 0 28px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

h1 {
  max-width: 650px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 92px;
  font-weight: 600;
  line-height: 0.94;
}

.intro {
  max-width: 470px;
  margin: 34px 0 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
}

.follow {
  max-width: 390px;
  margin: 14px 0 0;
  color: var(--muted);
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 34px;
  margin-top: 42px;
  padding-top: 24px;
}

.site-footer {
  justify-content: flex-start;
  gap: 32px;
  color: var(--muted);
  border-bottom: 0;
}

@media (max-width: 760px) {
  .site-header,
  .site-footer {
    min-height: 64px;
    padding: 0 22px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 16px;
  }

  .hero {
    min-height: calc(100svh - 128px);
    align-items: end;
  }

  .page-shell::after {
    background: rgba(255, 250, 244, 0.48);
  }

  .page-shell::before {
    background-position: 58% center;
  }

  .hero-copy {
    width: calc(100% - 44px);
    margin: 0 22px;
    padding: 48px 0 42px;
  }

  h1 {
    font-size: 62px;
  }

  .intro {
    font-size: 16px;
  }

  .contact-row {
    display: grid;
    gap: 12px;
  }

  .site-footer {
    flex-wrap: wrap;
    gap: 8px 20px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

@media (max-width: 420px) {
  .site-nav,
  .contact-row,
  .site-footer {
    font-size: 12px;
  }

  h1 {
    font-size: 42px;
  }
}

@media (min-width: 1240px) {
  h1 {
    font-size: 112px;
  }
}
