:root {
  color-scheme: light;
  --paper: #f7f4ee;
  --ink: #18211f;
  --muted: #53615d;
  --line: rgba(24, 33, 31, 0.16);
  --teal: #285b54;
  --teal-deep: #153b37;
  --gold: #b4863c;
  --white: #fffaf2;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100svh;
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  padding: 96px clamp(18px, 5vw, 76px) 80px;
  isolation: isolate;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(247, 244, 238, 0.96), rgba(247, 244, 238, 0.82) 45%, rgba(247, 244, 238, 0.26) 78%),
    linear-gradient(0deg, var(--paper) 0%, rgba(247, 244, 238, 0.04) 36%);
}

.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 5vw, 76px);
}

.brand,
.status {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  font-weight: 800;
}

.brand {
  max-width: min(100%, 520px);
  gap: 12px;
  text-decoration: none;
}

.brand__mark {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal-deep);
}

.status {
  flex: 0 0 auto;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--teal-deep);
  background: rgba(255, 250, 242, 0.66);
  backdrop-filter: blur(12px);
}

.hero__content {
  width: min(790px, 100%);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  color: var(--teal-deep);
  font-size: clamp(2.75rem, 6vw, 6.3rem);
  line-height: 0.96;
  letter-spacing: 0;
  overflow-wrap: normal;
  text-wrap: balance;
}

p {
  overflow-wrap: anywhere;
}

.hero__lead {
  width: min(660px, 100%);
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  line-height: 1.65;
}

.notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 5vw, 76px) 34px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.notice p {
  margin: 0;
  color: var(--muted);
}

.notice strong {
  color: var(--teal);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  text-align: right;
}

@media (max-width: 760px) {
  .hero {
    min-height: 86svh;
    align-items: end;
    padding-top: 112px;
    padding-bottom: 54px;
  }

  .hero__image {
    object-position: 58% center;
  }

  .hero__shade {
    background:
      linear-gradient(0deg, var(--paper) 0%, rgba(247, 244, 238, 0.97) 60%, rgba(247, 244, 238, 0.56) 100%),
      linear-gradient(90deg, rgba(247, 244, 238, 0.98), rgba(247, 244, 238, 0.72));
  }

  .topbar {
    align-items: flex-start;
  }

  .brand {
    font-size: 0.96rem;
  }

  .status {
    display: none;
  }

  h1 {
    font-size: clamp(2.15rem, 10.2vw, 3.8rem);
    line-height: 1.02;
  }

  .notice {
    display: grid;
  }

  .notice strong {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .brand span:last-child {
    max-width: 230px;
  }

  .hero__lead {
    font-size: 1rem;
  }
}
