:root {
  --ink: #17313a;
  --muted: #5d7277;
  --teal: #0d7f86;
  --teal-dark: #07565e;
  --mint: #dff4ef;
  --paper: #fbfaf7;
  --white: #ffffff;
  --line: rgba(23, 49, 58, 0.16);
  --shadow: 0 24px 64px rgba(20, 43, 46, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
}

.page-shell {
  min-height: 100vh;
  background: var(--paper);
}

.hero {
  position: relative;
  display: grid;
  min-height: 78svh;
  overflow: hidden;
  isolation: isolate;
}

.hero__image,
.hero__shade,
.hero__content {
  grid-area: 1 / 1;
}

.hero__image {
  width: 100%;
  height: 100%;
  min-height: 78svh;
  object-fit: cover;
  object-position: 63% center;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.98) 0%, rgba(251, 250, 247, 0.88) 32%, rgba(251, 250, 247, 0.16) 70%),
    linear-gradient(0deg, rgba(251, 250, 247, 0.86) 0%, rgba(251, 250, 247, 0) 34%);
  z-index: 1;
}

.hero__content {
  z-index: 2;
  align-self: center;
  width: min(100%, 1180px);
  padding: clamp(28px, 5vw, 72px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 9ch;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 8vw, 7.8rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.88;
}

.intro {
  max-width: 34rem;
  margin: 24px 0 0;
  color: #24454d;
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  max-width: 100%;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 1rem;
  font-weight: 740;
  line-height: 1;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-right: 9px;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible {
  outline: 3px solid rgba(13, 127, 134, 0.28);
  outline-offset: 3px;
}

.button--primary {
  color: var(--white);
  background: var(--teal);
}

.button--primary:hover {
  background: var(--teal-dark);
}

.button--secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(23, 49, 58, 0.14);
  box-shadow: 0 14px 36px rgba(20, 43, 46, 0.12);
  backdrop-filter: blur(10px);
}

.quick-info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 38rem;
  margin-top: 32px;
}

.quick-info span {
  padding: 8px 11px;
  border: 1px solid rgba(13, 127, 134, 0.2);
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.64);
  font-size: 0.92rem;
  font-weight: 680;
  backdrop-filter: blur(8px);
}

.details {
  padding: 28px clamp(18px, 4vw, 56px) 44px;
  background: var(--paper);
}

.details__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 1180px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.detail-item {
  display: flex;
  gap: 14px;
  min-width: 0;
  padding: 22px;
  background: rgba(255, 255, 255, 0.74);
}

.detail-item svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--teal);
}

.detail-item h2 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 0.95rem;
  letter-spacing: 0;
}

.detail-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.45;
}

.detail-item a {
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

@media (max-width: 760px) {
  .hero {
    min-height: 76svh;
  }

  .hero__image {
    min-height: 76svh;
    object-position: 64% center;
  }

  .hero__shade {
    background:
      linear-gradient(0deg, rgba(251, 250, 247, 0.96) 0%, rgba(251, 250, 247, 0.86) 50%, rgba(251, 250, 247, 0.24) 100%),
      linear-gradient(90deg, rgba(251, 250, 247, 0.7) 0%, rgba(251, 250, 247, 0) 72%);
  }

  .hero__content {
    align-self: end;
    padding: 28px 18px 34px;
  }

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

  .intro {
    margin-top: 18px;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .button {
    width: 100%;
  }

  .quick-info {
    margin-top: 22px;
  }

  .details {
    padding: 18px 14px 30px;
  }

  .details__inner {
    grid-template-columns: 1fr;
  }

  .detail-item {
    padding: 18px;
  }
}

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