@font-face {
  font-family: "Maven Pro";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/maven-pro.woff2") format("woff2");
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("/assets/fonts/dm-sans.woff2") format("woff2");
}

:root {
  --brand-orange: #d65f08;
  --brand-orange-dark: #b94e05;
  --brand-charcoal: #2a2a2a;
  --brand-cream: #f7f3ed;
  --brand-white: #ffffff;
  --brand-border: #eadfd5;
  --brand-muted: #625c57;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--brand-cream);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100svh;
  color: var(--brand-charcoal);
  background:
    radial-gradient(circle at 9% 8%, rgba(214, 95, 8, 0.08) 0 7rem, transparent 7.1rem),
    radial-gradient(circle at 92% 92%, rgba(214, 95, 8, 0.06) 0 10rem, transparent 10.1rem),
    var(--brand-cream);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.page-shell {
  width: min(100%, 62rem);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(2rem, 7vh, 5rem) clamp(1rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand {
  margin-bottom: clamp(1.75rem, 4vw, 3rem);
  text-align: center;
}

.brand img {
  display: block;
  width: min(100%, 31.25rem);
  height: auto;
  margin: 0 auto;
}

.notice {
  position: relative;
  overflow: hidden;
  width: min(100%, 49rem);
  margin: 0 auto;
  border: 1px solid var(--brand-border);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 1.5rem 4rem rgba(42, 42, 42, 0.08),
    0 0.25rem 1rem rgba(42, 42, 42, 0.04);
}

.notice-accent {
  height: 0.4rem;
  background: var(--brand-orange);
}

.notice-content {
  padding: clamp(2rem, 6vw, 4rem);
}

h1 {
  margin: 0 0 1.75rem;
  font-family: "Maven Pro", Arial, sans-serif;
  font-size: clamp(2.25rem, 7vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--brand-charcoal);
}

p {
  margin: 0;
}

.message {
  display: grid;
  gap: 1rem;
  max-width: 42rem;
  font-size: clamp(1.02rem, 2.4vw, 1.125rem);
  color: var(--brand-muted);
}

.contact {
  margin-top: clamp(2rem, 5vw, 2.75rem);
  padding-top: clamp(1.5rem, 4vw, 2rem);
  border-top: 1px solid var(--brand-border);
}

.contact p {
  max-width: 42rem;
  margin-bottom: 0.65rem;
  color: var(--brand-charcoal);
  font-weight: 500;
}

.contact a {
  display: inline-block;
  border-radius: 0.25rem;
  color: var(--brand-orange-dark);
  font-family: "Maven Pro", Arial, sans-serif;
  font-size: clamp(1.125rem, 3vw, 1.35rem);
  font-weight: 700;
  text-decoration-thickness: 0.11em;
  text-underline-offset: 0.22em;
}

.contact a:hover {
  color: var(--brand-orange);
}

.contact a:focus-visible {
  outline: 0.2rem solid var(--brand-orange);
  outline-offset: 0.35rem;
}

@media (max-width: 38rem) {
  .page-shell {
    justify-content: flex-start;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .brand img {
    width: min(100%, 22rem);
  }

  .notice {
    border-radius: 1.15rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .contact a {
    transition: color 160ms ease;
  }
}

@media print {
  body {
    background: #ffffff;
  }

  .page-shell {
    min-height: auto;
  }

  .notice {
    box-shadow: none;
  }
}
