:root {
  color-scheme: light;
  --ink: #161513;
  --paper: #f2eee6;
  --paper-deep: #e0d6c7;
  --line: rgba(22, 21, 19, 0.16);
  --white: #fffaf1;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 100%);
  font-family: "Helvetica Neue", Arial, sans-serif;
}

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

.site-header {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 4vw, 56px);
  color: var(--white);
}

.site-header-solid {
  position: sticky;
  color: var(--white);
  background: rgba(22, 21, 19, 0.9);
  border-bottom: 1px solid rgba(255, 250, 241, 0.14);
  backdrop-filter: blur(18px);
}

.brand {
  flex: 0 0 auto;
  line-height: 1;
}

.brand img {
  display: block;
  width: clamp(128px, 15vw, 190px);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2.4vw, 30px);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-links a {
  border-bottom: 1px solid transparent;
  padding: 4px 0;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  border-color: currentColor;
}

.home-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #191715;
}

.home-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.02) 58%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.03) 46%);
}

.home-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% 35%;
}

.mailing-list {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 4vw, 56px);
  bottom: clamp(24px, 5vh, 56px);
  width: min(540px, calc(100vw - 40px));
  overflow: hidden;
  background: rgba(255, 250, 241, 0.92);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.mailing-list iframe {
  width: 100%;
  border: 0;
}

.info-page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(34px, 6vw, 72px) 0 clamp(54px, 8vw, 96px);
}

.info-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.info-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 25%;
}

.info-copy {
  padding-top: clamp(4px, 2vw, 28px);
}

.info-copy h1 {
  margin: 0 0 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 0.95;
}

.info-copy p {
  margin: 0 0 18px;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.62;
}

.info-copy .contact {
  margin-top: 30px;
  font-weight: 700;
}

.info-copy a {
  border-bottom: 1px solid currentColor;
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    gap: 16px;
  }

  .site-header-solid {
    position: sticky;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 8px 16px;
    font-size: 0.72rem;
  }

  .home-hero-image {
    object-position: 58% 45%;
  }

  .mailing-list {
    position: relative;
    right: auto;
    bottom: auto;
    margin: calc(100vh - 360px) 20px 32px auto;
    width: min(350px, calc(100% - 40px));
  }

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

  .info-image {
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 500px) {
  .site-header {
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .brand img {
    width: 142px;
  }
  .site-footer {
  width: 100%;
  padding: 1.5rem 1rem 2rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.04em;
	}

	.site-footer p {
	  margin: 0;
	}

}
