:root {
  color-scheme: light;
  --background: #f5f1e8;
  --surface: #faf7f0;
  --green: #285943;
  --copper: #b85f24;
  --graphite: #252825;
  --muted: #63665f;
  --line: rgba(40, 89, 67, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--background);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  min-height: 100svh;
  color: var(--graphite);
  background: var(--background);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

.page {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(28px, 4vw, 64px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  width: min(1120px, 100%);
  margin: auto;
  gap: clamp(56px, 9vw, 144px);
}

.brand {
  display: grid;
  place-items: center;
}

.brand__logo {
  display: block;
  width: min(100%, 440px);
  height: auto;
  mix-blend-mode: multiply;
}

.content {
  max-width: 600px;
  padding-block: 24px;
}

.eyebrow,
h1,
.return-date p,
.contacts p {
  margin: 0;
}

.eyebrow {
  color: var(--green);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 {
  margin-top: 0.05em;
  color: var(--green);
  font-size: clamp(3.2rem, 6.8vw, 6.8rem);
  font-weight: 650;
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.return-date {
  margin-top: clamp(44px, 7vh, 76px);
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.4;
}

.return-date p {
  color: var(--muted);
}

.return-date time {
  display: block;
  margin-top: 3px;
  color: var(--copper);
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  font-weight: 650;
  letter-spacing: -0.035em;
}

.contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: clamp(40px, 6vh, 64px);
  font-style: normal;
}

.contacts__label {
  margin-bottom: 12px !important;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contacts a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--graphite);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 550;
  text-decoration-color: transparent;
  text-underline-offset: 0.25em;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.contacts a:hover {
  color: var(--green);
  text-decoration-color: currentColor;
}

.contacts a:focus-visible {
  color: var(--green);
  outline: 2px solid var(--copper);
  outline-offset: 4px;
  border-radius: 2px;
}

footer {
  width: min(1120px, 100%);
  margin: clamp(40px, 7vh, 80px) auto 0;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

@media (max-width: 760px) {
  .page {
    padding: 24px clamp(20px, 6vw, 36px) 28px;
  }

  .hero {
    grid-template-columns: 1fr;
    align-content: center;
    gap: clamp(34px, 7vh, 56px);
  }

  .brand {
    justify-items: start;
  }

  .brand__logo {
    width: min(58vw, 230px);
  }

  .content {
    padding: 0;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 5.25rem);
  }

  .return-date {
    margin-top: 38px;
  }

  .contacts {
    margin-top: 34px;
  }

  footer {
    margin-top: 48px;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 2.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

