:root {
  color-scheme: light;
  font-family: Georgia, "Times New Roman", serif;
  color: #30291f;
  background: #f8f4eb;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
}

.landing {
  --art-width: max(100vw, calc(100svh * 1672 / 941));
  --art-height: max(100svh, calc(100vw * 941 / 1672));
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}

.landing__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.discover {
  position: absolute;
  top: calc(25% + var(--art-height) * 0.275);
  left: calc(50% - var(--art-width) * 0.235);
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: max-content;
  min-height: 48px;
  padding: 0.9rem 1.5rem;
  border: 1px solid #aa8147;
  border-radius: 3px;
  background: #fffaf1;
  color: #725027;
  box-shadow: 0 3px 16px rgb(79 55 28 / 10%);
  font-size: clamp(0.875rem, 1.05vw, 1.125rem);
  line-height: 1.3;
  letter-spacing: 0.045em;
  text-decoration: none;
  text-align: center;
  transition: background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.discover__arrow {
  display: block;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
}

@media (hover: hover) {
  .discover:hover {
    background: #725027;
    color: #fffaf1;
    box-shadow: 0 5px 20px rgb(79 55 28 / 16%);
  }
}

.discover:focus-visible {
  outline: 3px solid #30291f;
  outline-offset: 5px;
}

.mobile-title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

@media (max-aspect-ratio: 6/5) {
  .landing__image { object-position: 75% center; }
  .landing::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgb(255 250 241 / 96%), rgb(255 250 241 / 88%) 24%, rgb(255 250 241 / 36%) 43%, transparent 62%);
    pointer-events: none;
  }
  .mobile-title {
    z-index: 1;
    width: 100%;
    height: auto;
    padding: max(2rem, 5svh) 1rem 0;
    margin: 0;
    overflow: visible;
    clip-path: none;
    white-space: normal;
    text-align: center;
  }
  .mobile-title h1 {
    margin: 0;
    color: #18211e;
    font-weight: 400;
    font-size: clamp(2.5rem, 11vw, 4.75rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
  }
  .mobile-title h1 span { display: block; }
  .mobile-title h1 i { color: #aa8147; font-weight: 400; }
  .mobile-title p {
    margin: 1.25rem 0 0;
    color: #86602e;
    font-size: clamp(0.8rem, 2.7vw, 1.125rem);
    letter-spacing: 0.3em;
    text-transform: uppercase;
  }
  .discover {
    z-index: 1;
    top: auto;
    bottom: max(2rem, 7svh);
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    max-width: calc(100% - 2rem);
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .discover { transition: none; }
}
