/* Shared layout for ChronoFive informational pages */
:root {
  --ink: #191713;
  --ink-soft: #3a342c;
  --muted: #6b6358;
  --line: #d6c9b3;
  --accent: #1f6f68;
  --accent-strong: #15514c;
  --paper: #f7f1e6;
  --paper-deep: #efe6d6;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(31, 111, 104, 0.1), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(141, 91, 45, 0.08), transparent 50%),
    linear-gradient(180deg, #fbf7ef 0%, var(--paper) 40%, var(--paper-deep) 100%);
  line-height: 1.55;
}

a {
  color: var(--accent-strong);
}

a:hover {
  color: var(--accent);
}

.info-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  padding: 16px clamp(16px, 4vw, 40px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 252, 246, 0.85);
  backdrop-filter: blur(8px);
}

.info-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.info-brand img {
  width: 36px;
  height: 36px;
  display: block;
}

.info-brand strong {
  font-size: 1.25rem;
  letter-spacing: 0.01em;
}

.info-top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 0.88rem;
}

.info-top-nav a {
  text-decoration: none;
  font-weight: 600;
}

.info-play-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff !important;
  text-decoration: none;
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
}

.info-play-link:hover {
  background: var(--accent-strong);
}

.info-main {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: 28px clamp(16px, 4vw, 28px) 48px;
}

.info-main h1 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  line-height: 1.15;
}

.info-lead {
  margin: 0 0 28px;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.info-main h2 {
  margin: 28px 0 10px;
  font-size: 1.2rem;
}

.info-main p,
.info-main li {
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 0.98rem;
  color: var(--ink-soft);
}

.info-main ul,
.info-main ol {
  padding-left: 1.2rem;
}

.info-main li + li {
  margin-top: 6px;
}

.info-note {
  margin: 18px 0;
  padding: 12px 14px;
  border-left: 3px solid var(--accent);
  background: rgba(31, 111, 104, 0.08);
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 0.92rem;
}

.info-footer {
  border-top: 1px solid var(--line);
  padding: 24px clamp(16px, 4vw, 40px) 36px;
  background: rgba(255, 252, 246, 0.7);
}

.info-footer-inner {
  width: min(900px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 0.85rem;
}

.info-footer nav a {
  text-decoration: none;
  font-weight: 600;
}

.info-footer p {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 0.8rem;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 12px;
  margin-top: 8px;
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
}

.contact-form label {
  display: grid;
  gap: 4px;
  font-weight: 650;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  background: #fff;
  color: var(--ink);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button {
  justify-self: start;
  padding: 10px 18px;
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.contact-form button:hover {
  background: var(--accent-strong);
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 600px) {
  .info-top-nav {
    width: 100%;
  }
}
