/* Klangschalenwelt — holding page.
   Temporary. Palette is a first approximation of the mockups; the real design
   tokens land in phase 3. Self-hosted only: no external request of any kind. */

:root {
  --navy:        #0F2438;
  --navy-deep:   #0A1A29;
  --gold:        #C9A44C;
  --gold-text:   #8A6D25; /* deeper gold — passes AA on cream for body text */
  --cream:       #FAF6EE;
  --card:        #FFFCF6;
  --ink:         #2B2B28;
  --ink-soft:    #55534C;
  --amber:       #F0C86A;
  --rule:        rgba(201, 164, 76, 0.35);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
}

.wrap {
  width: 100%;
  max-width: 46rem;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

/* ---------------------------------------------------------------- notice --
   Full-width bar above the header, visually distinct from the navy so it
   reads as a notice rather than as chrome. */
.notice {
  background: var(--amber);
  color: #3A2C05;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  padding-top: env(safe-area-inset-top);
}

.notice__inner {
  width: 100%;
  max-width: 46rem;
  margin-inline: auto;
  padding: 0.9rem clamp(1.25rem, 5vw, 2.5rem);
}

.notice__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
}

.notice__text + .notice__text { margin-top: 0.4rem; }

.notice a {
  color: #3A2C05;
  font-weight: 600;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

/* ------------------------------------------------------------- skip link */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip:focus {
  left: 0;
  z-index: 10;
  display: block;
  padding: 0.75rem 1.25rem;
  background: var(--navy);
  color: #fff;
}

/* ---------------------------------------------------------------- header */
.head {
  background: var(--navy);
  color: #fff;
  padding-block: clamp(1.5rem, 5vw, 2.25rem);
  text-align: center;
}

.brand {
  margin: 0;
  font-family: "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 5vw, 2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tagline {
  margin: 0.35rem 0 0;
  color: var(--gold);
  font-family: "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 3.2vw, 1.1875rem);
  font-style: italic;
}

/* ------------------------------------------------------------------ main */
.main {
  padding-block: clamp(2rem, 7vw, 3.5rem);
}

h1 {
  margin: 0 0 0.75rem;
  font-family: "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 5.5vw, 2.125rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy);
}

h2 {
  margin: 0 0 1rem;
  font-family: "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  font-size: clamp(1.1875rem, 4vw, 1.4375rem);
  font-weight: 600;
  color: var(--navy);
}

.lead {
  margin: 0 0 1.75rem;
  color: var(--gold-text);
  font-size: clamp(1rem, 3.4vw, 1.125rem);
  font-weight: 600;
  letter-spacing: 0.01em;
}

p { margin: 0 0 1.15rem; }

/* --------------------------------------------------------------- contact */
.contact {
  margin-top: 2.5rem;
  padding: clamp(1.25rem, 5vw, 1.875rem);
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 3px;
}

.contact__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.contact__list li {
  display: grid;
  gap: 0.15rem;
}

.contact__label {
  font-size: 0.75rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--gold-text);
  font-weight: 700;
}

.contact__value {
  font-size: 1.0625rem;
  color: var(--ink);
}

/* Phone and email are the only conversion on this page: make them large,
   and give them a 44px minimum target per §13. */
a.contact__value {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--navy);
  font-weight: 600;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

@media (min-width: 34rem) {
  .contact__list li {
    grid-template-columns: 8.5rem 1fr;
    gap: 0.25rem 1.25rem;
    align-items: baseline;
  }
}

/* ---------------------------------------------------------------- footer */
.foot {
  background: var(--navy-deep);
  color: #C9CFD6;
  padding-block: clamp(1.75rem, 6vw, 2.5rem);
  padding-bottom: max(clamp(1.75rem, 6vw, 2.5rem), env(safe-area-inset-bottom));
  font-size: 0.875rem;
}

.foot p { margin: 0 0 0.4rem; }

.foot__note {
  margin-top: 1rem;
  color: #8D97A2;
  font-size: 0.8125rem;
  line-height: 1.55;
}

/* --------------------------------------------------------------- shared */
a { color: var(--navy); }

a:focus-visible,
.skip:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

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

/* Not a dark theme — just don't look broken when the OS is dark (§13). */
@media (prefers-color-scheme: dark) {
  body { background: var(--cream); color: var(--ink); }
}

@media print {
  .notice, .skip { display: none; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .head, .foot { background: #fff; color: #000; }
  .brand, .tagline, h1, h2, .lead { color: #000; }
  a { color: #000; text-decoration: underline; }
  .contact { border: 1px solid #000; }
}
