:root {
  --river: #0c5f7f;
  --river-dark: #08384b;
  --forest: #214f3b;
  --saffron: #c8872f;
  --snow: #f5f8f4;
  --paper: #fbfbf7;
  --ink: #17241f;
  --muted: #65716c;
  --line: rgba(23, 36, 31, 0.16);
  --white: #ffffff;
  --shadow: 0 20px 54px rgba(8, 56, 75, 0.2);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 44px;
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.brand-domain {
  overflow: hidden;
  font-size: 0.95rem;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 27, 31, 0.9) 0%, rgba(5, 27, 31, 0.62) 40%, rgba(5, 27, 31, 0.2) 78%),
    linear-gradient(0deg, rgba(5, 27, 31, 0.58), rgba(5, 27, 31, 0.08));
}

.hero-content {
  display: grid;
  width: min(760px, calc(100% - 88px));
  min-height: 88svh;
  align-content: end;
  gap: 20px;
  padding: 120px 0 54px;
  margin: 0 44px;
}

.status-pill,
.section-kicker {
  margin: 0;
  color: var(--saffron);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: var(--white);
  background: rgba(200, 135, 47, 0.84);
}

h1,
h2,
p,
dl,
dd {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 4.8rem;
  line-height: 0.96;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
}

.identity-panel {
  display: grid;
  width: min(100%, 620px);
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1px;
  margin-bottom: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.identity-panel div {
  padding: 18px;
  background: rgba(5, 27, 31, 0.42);
}

dt {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin-bottom: 0;
  font-size: 1.08rem;
  font-weight: 850;
}

.notice-section {
  padding: 54px 44px 62px;
  background: var(--paper);
}

.section-inner {
  display: grid;
  width: min(1120px, 100%);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: center;
  gap: 36px;
  margin: 0 auto;
}

.notice-copy {
  max-width: 720px;
}

h2 {
  margin-bottom: 14px;
  color: var(--river-dark);
  font-size: 2.3rem;
  line-height: 1.08;
}

.notice-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-panel {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 112px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(33, 79, 59, 0.12);
}

.contact-symbol {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  place-items: center;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--river);
  font-size: 1.45rem;
  font-weight: 900;
}

.contact-panel span span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-panel strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--forest);
  font-size: 1.25rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 44px;
  color: var(--snow);
  background: var(--river-dark);
  font-size: 0.9rem;
  font-weight: 750;
}

@media (max-width: 760px) {
  .site-header {
    padding: 16px 18px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .brand-domain {
    max-width: 46vw;
    font-size: 0.85rem;
  }

  .site-nav a {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.8rem;
  }

  .hero {
    min-height: 90svh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 27, 31, 0.88), rgba(5, 27, 31, 0.58)),
      linear-gradient(0deg, rgba(5, 27, 31, 0.66), rgba(5, 27, 31, 0.1));
  }

  .hero-content {
    width: calc(100% - 36px);
    min-height: 90svh;
    gap: 16px;
    padding: 102px 0 34px;
    margin: 0 18px;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .identity-panel {
    grid-template-columns: 1fr;
  }

  .identity-panel div {
    padding: 15px;
  }

  .notice-section {
    padding: 38px 18px 46px;
  }

  .section-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  h2 {
    font-size: 1.9rem;
  }

  .contact-panel {
    min-height: 96px;
    padding: 16px;
  }

  .site-footer {
    flex-direction: column;
    padding: 24px 18px;
  }
}

@media (max-width: 420px) {
  .site-header {
    gap: 10px;
  }

  .brand {
    gap: 8px;
  }

  .brand-domain {
    max-width: 40vw;
  }

  .site-nav {
    gap: 6px;
  }

  .site-nav a {
    padding: 0 8px;
  }

  h1 {
    font-size: 2.45rem;
  }

  .status-pill {
    min-height: 32px;
    font-size: 0.72rem;
  }
}

@media (max-width: 360px) {
  .brand-domain {
    display: none;
  }
}
