:root {
  --bg-0: #03070c;
  --bg-1: #08111a;
  --bg-2: #112133;
  --panel: rgba(6, 13, 20, 0.78);
  --panel-strong: rgba(5, 10, 16, 0.9);
  --line: rgba(208, 235, 246, 0.18);
  --line-bright: rgba(226, 246, 252, 0.42);
  --ice: #d8eff6;
  --ice-2: #96cfe0;
  --steel: #b6c8d2;
  --text: #edf6f9;
  --muted: #bccbd2;
  --red: #9f1e28;
  --red-bright: #d34755;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.46);
  --radius: 18px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(3, 6, 10, 0.82), rgba(5, 10, 16, 0.9)),
    url("../img/tof-ice-background.jpg") center center / cover fixed no-repeat;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background:
    radial-gradient(circle at 10% 8%, rgba(212, 244, 252, 0.14), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(143, 197, 215, 0.12), transparent 27%),
    radial-gradient(circle at 50% 70%, rgba(159, 30, 40, 0.08), transparent 30%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.35), transparent 16%, transparent 84%, rgba(0, 0, 0, 0.35));
}

body::after {
  background:
    linear-gradient(115deg, transparent 0 46%, rgba(220, 245, 252, 0.045) 47%, transparent 48%),
    linear-gradient(64deg, transparent 0 54%, rgba(175, 217, 231, 0.03) 55%, transparent 56%);
  background-size: 280px 280px, 360px 360px;
  opacity: 0.9;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(3, 8, 13, 0.9), rgba(5, 12, 18, 0.84));
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.25);
}

.site-header::after {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(225, 247, 252, 0.5), transparent);
}

.header-inner {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
}

.brand-mark {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  padding: 4px;
  border-radius: 50%;
  border: 1px solid rgba(216, 244, 251, 0.4);
  background: radial-gradient(circle at 50% 40%, rgba(203, 236, 248, 0.18), rgba(3, 8, 12, 0.72));
  box-shadow: inset 0 0 18px rgba(203, 236, 248, 0.15), 0 0 22px rgba(109, 180, 199, 0.14);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(204, 241, 251, 0.28));
}

.brand-copy strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 2px;
}

.main-nav { justify-self: center; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-link {
  display: block;
  padding: 12px 13px;
  border-radius: 10px;
  color: #d0dce1;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: 0.2s ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: #fff;
  background: linear-gradient(180deg, rgba(165, 210, 223, 0.16), rgba(80, 119, 132, 0.04));
  box-shadow: inset 0 0 0 1px rgba(201, 236, 245, 0.16);
}

.nav-link[aria-current="page"]::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 6px;
  background: linear-gradient(90deg, transparent, var(--ice), transparent);
}

.header-action,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid rgba(215, 242, 248, 0.28);
  background: linear-gradient(180deg, rgba(209, 239, 246, 0.15), rgba(103, 144, 156, 0.05));
  color: #f5fbfc;
  font-weight: 700;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.07);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-action:hover,
.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(215, 242, 248, 0.55);
  box-shadow: 0 8px 28px rgba(81, 151, 170, 0.14), inset 0 1px rgba(255, 255, 255, 0.1);
}

.btn-primary {
  background: linear-gradient(180deg, #bc3040, #711119);
  border-color: rgba(255, 127, 134, 0.44);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.12), 0 10px 30px rgba(109, 12, 21, 0.28);
}

.btn-ghost { background: rgba(7, 13, 18, 0.46); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: #dbeef3;
  position: relative;
  margin: auto;
  transition: 0.2s ease;
}

.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.floating-rune {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 92px;
  height: 92px;
  padding: 7px;
  display: grid;
  place-items: center;
  z-index: 95;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, rgba(215, 242, 248, 0.2), rgba(5, 10, 16, 0.86));
  border: 1px solid rgba(215, 242, 248, 0.28);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.38), inset 0 0 16px rgba(207, 239, 247, 0.16);
  backdrop-filter: blur(12px);
}

.floating-rune img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(204, 241, 251, 0.3));
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(3, 7, 11, 0.86) 0%, rgba(4, 10, 16, 0.62) 45%, rgba(4, 9, 13, 0.9) 100%),
    url("../img/tof-ice-background.jpg") center center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 22% 45%, rgba(160, 224, 240, 0.14), transparent 24%),
    radial-gradient(circle at 82% 40%, rgba(149, 27, 38, 0.18), transparent 30%),
    linear-gradient(118deg, transparent 0 26%, rgba(203, 237, 244, 0.08) 27%, transparent 28% 45%, rgba(203, 237, 244, 0.04) 46%, transparent 47%),
    linear-gradient(72deg, transparent 0 36%, rgba(159, 214, 228, 0.05) 37%, transparent 38% 64%, rgba(159, 214, 228, 0.04) 65%, transparent 66%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(310px, 0.9fr) minmax(440px, 1.1fr);
  gap: 70px;
  align-items: center;
}

.hero-art {
  min-height: 560px;
  position: relative;
}

.hero-art::before {
  content: "";
  position: absolute;
  left: 5%;
  top: 8%;
  width: 78%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 40%, rgba(229, 247, 252, 0.22), rgba(4, 9, 14, 0.3) 52%, rgba(3, 7, 11, 0.74) 100%),
    rgba(3, 7, 11, 0.6);
  border: 1px solid rgba(226, 246, 252, 0.18);
  box-shadow: inset 0 0 50px rgba(190, 228, 239, 0.08), 0 0 42px rgba(118, 188, 207, 0.12);
}

.hero-art::after {
  content: "";
  position: absolute;
  left: 14%;
  top: 12%;
  width: 62%;
  aspect-ratio: 1 / 1;
  background: url("../img/tof-rune.png") center center / contain no-repeat;
  filter: drop-shadow(0 0 26px rgba(179, 228, 240, 0.26));
  opacity: 0.95;
}

.ice-scar {
  position: absolute;
  height: 2px;
  width: 80%;
  left: 4%;
  background: linear-gradient(90deg, transparent, rgba(212, 245, 251, 0.72), transparent);
  filter: drop-shadow(0 0 8px rgba(163, 224, 239, 0.8));
  transform-origin: center;
  opacity: 0.7;
}

.ice-scar.s1 { top: 24%; transform: rotate(-28deg); }
.ice-scar.s2 { top: 49%; left: 18%; width: 65%; transform: rotate(21deg); opacity: 0.38; }
.ice-scar.s3 { top: 68%; width: 71%; transform: rotate(-11deg); opacity: 0.28; }

.hero-copy {
  padding: 34px 0;
  max-width: 680px;
  justify-self: end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #c8dbe2;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ice));
}

.hero h1,
.page-hero h1 {
  margin: 18px 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero h1 { font-size: clamp(3.5rem, 7vw, 6.8rem); }

.hero h1 span {
  display: block;
  color: var(--ice);
  text-shadow: 0 0 28px rgba(157, 220, 235, 0.16);
}

.hero-copy > p {
  max-width: 62ch;
  color: #d2dde1;
  font-size: clamp(1.02rem, 1.5vw, 1.19rem);
  line-height: 1.75;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.hero-meta {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.meta-box {
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(4, 10, 15, 0.58);
  backdrop-filter: blur(8px);
}

.meta-box strong { display: block; font-size: 0.95rem; }
.meta-box span { display: block; color: var(--muted); font-size: 0.82rem; margin-top: 6px; line-height: 1.4; }

.section { padding: 92px 0; }
.section-tight { padding: 66px 0; }

.section-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.section-header h2,
.content-title {
  margin: 8px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.45rem);
  letter-spacing: -0.025em;
}

.section-header p { max-width: 58ch; color: var(--muted); line-height: 1.7; margin: 0; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.card,
.feature-card,
.content-panel,
.event-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(220, 242, 248, 0.05), transparent 34%),
    rgba(5, 11, 16, 0.76);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.card::before,
.feature-card::before,
.event-card::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(218, 244, 250, 0.58), transparent);
}

.card { padding: 26px; min-height: 250px; }
.card-kicker { color: var(--ice-2); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 800; }
.card h3 { margin: 12px 0 10px; font-family: Georgia, "Times New Roman", serif; font-size: 1.6rem; }
.card p { color: var(--muted); line-height: 1.65; margin: 0; }
.card-link { display: inline-flex; gap: 8px; align-items: center; margin-top: 22px; color: #eaf8fb; font-weight: 750; font-size: 0.9rem; }
.card-link::after { content: "→"; transition: transform 0.2s ease; }
.card-link:hover::after { transform: translateX(4px); }

.event-strip {
  padding: 26px 0;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(116, 16, 28, 0.36), rgba(116, 16, 28, 0.1), rgba(116, 16, 28, 0.36));
  backdrop-filter: blur(10px);
}

.event-strip-inner { display: grid; grid-template-columns: 1.1fr 0.7fr auto; gap: 28px; align-items: center; }
.event-strip strong { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.3rem, 3vw, 2rem); }
.event-strip span { color: #d5dde0; line-height: 1.5; }

.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 32px; align-items: stretch; }
.feature-card { min-height: 460px; padding: 34px; }
.feature-card.red {
  background:
    radial-gradient(circle at 84% 20%, rgba(216, 58, 69, 0.24), transparent 28%),
    linear-gradient(180deg, rgba(155, 24, 35, 0.12), transparent 30%),
    rgba(5, 11, 16, 0.82);
}
.feature-card h3 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 4vw, 3.4rem); margin: 12px 0; max-width: 12ch; line-height: 1.05; }
.feature-card p { max-width: 58ch; color: var(--muted); line-height: 1.7; }
.feature-list { display: grid; gap: 10px; margin-top: 24px; }
.feature-list span { padding: 11px 12px; border-left: 2px solid rgba(198, 233, 241, 0.42); background: rgba(255, 255, 255, 0.025); color: #d6e2e5; }

.quote-panel {
  display: grid;
  place-items: center;
  min-height: 460px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 50px;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(137, 194, 208, 0.1), transparent 42%),
    rgba(4, 10, 15, 0.7);
  backdrop-filter: blur(10px);
}

.quote-panel blockquote { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.7rem, 3vw, 2.6rem); line-height: 1.3; color: #eaf5f7; }
.quote-panel cite { margin-top: 18px; color: var(--muted); font-style: normal; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; }

.page-hero {
  padding: 112px 0 72px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 7, 11, 0.82), rgba(5, 12, 18, 0.72)),
    url("../img/tof-ice-background.jpg") center center / cover no-repeat;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: min(4vw, 40px);
  top: 20px;
  width: min(22vw, 240px);
  aspect-ratio: 1 / 1;
  background: url("../img/tof-rune.png") center center / contain no-repeat;
  opacity: 0.15;
  filter: drop-shadow(0 0 18px rgba(179, 228, 240, 0.2));
}

.page-hero h1 { font-size: clamp(3.1rem, 6vw, 5.8rem); max-width: 950px; }
.page-hero p { max-width: 70ch; color: var(--muted); font-size: 1.08rem; line-height: 1.75; }

.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 28px; }
.content-panel { padding: 32px; }
.content-panel + .content-panel { margin-top: 20px; }
.content-panel h2, .content-panel h3 { font-family: Georgia, "Times New Roman", serif; }
.content-panel h2 { font-size: 2rem; margin-top: 0; }
.content-panel h3 { margin-top: 26px; }
.content-panel p, .content-panel li { color: #cfdbdf; line-height: 1.75; }
.content-panel ul { padding-left: 1.15rem; }

.sidebar { display: grid; gap: 18px; align-content: start; position: sticky; top: 104px; }
.side-card { border: 1px solid var(--line); border-radius: 14px; background: rgba(5, 11, 16, 0.7); padding: 20px; backdrop-filter: blur(10px); }
.side-card h3 { margin: 0 0 12px; font-family: Georgia, "Times New Roman", serif; }
.side-card p, .side-card li { color: var(--muted); font-size: 0.92rem; line-height: 1.6; }
.side-nav { list-style: none; padding: 0; margin: 0; display: grid; gap: 7px; }
.side-nav a { display: block; padding: 9px 10px; border-radius: 8px; color: #c4d2d7; }
.side-nav a:hover { background: rgba(255, 255, 255, 0.04); color: #fff; }

.event-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.event-card { padding: 32px; min-height: 360px; display: flex; flex-direction: column; }
.event-card .status { align-self: flex-start; padding: 6px 9px; border-radius: 999px; font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: #ffe6e8; background: rgba(165, 32, 43, 0.24); border: 1px solid rgba(213, 72, 81, 0.28); }
.event-card h2 { font-family: Georgia, "Times New Roman", serif; font-size: 2.2rem; margin: 18px 0 8px; }
.event-card p { color: var(--muted); line-height: 1.7; }
.event-data { display: grid; gap: 10px; margin: 18px 0 26px; }
.event-data div { display: grid; grid-template-columns: 95px 1fr; gap: 12px; padding-bottom: 10px; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.event-data dt { color: #9ab1b8; }
.event-data dd { margin: 0; color: #e3eef0; }
.event-card .btn { margin-top: auto; align-self: flex-start; }

.download-list { display: grid; gap: 12px; }
.download-row { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; padding: 18px 20px; border: 1px solid var(--line); border-radius: 12px; background: rgba(5, 11, 16, 0.62); backdrop-filter: blur(8px); }
.download-row strong { display: block; }
.download-row small { color: var(--muted); display: block; margin-top: 4px; }

.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 28px; }
.form-card { border: 1px solid var(--line); border-radius: var(--radius); background: rgba(5, 11, 16, 0.82); padding: 28px; backdrop-filter: blur(12px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.84rem; color: #c8d5d9; font-weight: 700; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid rgba(198, 229, 237, 0.18); border-radius: 10px; background: #081016; color: #edf7f9; padding: 13px 14px; outline: none; }
.field textarea { min-height: 170px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: rgba(201, 235, 244, 0.5); box-shadow: 0 0 0 3px rgba(138, 195, 209, 0.08); }

.site-footer { border-top: 1px solid var(--line); background: rgba(3, 7, 11, 0.86); margin-top: 30px; backdrop-filter: blur(10px); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr; gap: 38px; padding: 56px 0 36px; }
.footer-grid h3 { margin: 0 0 12px; font-family: Georgia, "Times New Roman", serif; }
.footer-grid p, .footer-grid a { color: #aebdc3; line-height: 1.7; font-size: 0.9rem; }
.footer-links { display: grid; gap: 7px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { padding: 18px 0 24px; border-top: 1px solid rgba(255, 255, 255, 0.06); color: #7e949c; font-size: 0.8rem; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .header-inner { grid-template-columns: auto auto 1fr; }
  .main-nav { position: absolute; left: 20px; right: 20px; top: 92px; display: none; padding: 12px; border: 1px solid var(--line); border-radius: 14px; background: rgba(4, 9, 13, 0.98); box-shadow: var(--shadow); }
  .main-nav.open { display: block; }
  .nav-list { display: grid; grid-template-columns: 1fr 1fr; }
  .nav-link { padding: 12px; }
  .header-action { justify-self: end; }
  .nav-toggle { display: grid; place-items: center; justify-self: end; order: 3; }
  .header-action { display: none; }
  .hero { min-height: auto; padding: 70px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-art { min-height: 360px; order: 2; }
  .hero-art::before { width: 44%; left: 28%; top: 2%; }
  .hero-art::after { width: 35%; left: 32.5%; top: 7%; }
  .hero-copy { order: 1; justify-self: start; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .header-inner { min-height: 72px; gap: 12px; }
  .brand-mark { width: 48px; height: 48px; }
  .brand-copy small { display: none; }
  .nav-list { grid-template-columns: 1fr; }
  .hero { padding: 58px 0 34px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .hero-meta { grid-template-columns: 1fr; }
  .hero-art { min-height: 280px; }
  .hero-art::before { width: 68%; left: 16%; top: 0; }
  .hero-art::after { width: 52%; left: 24%; top: 8%; }
  .section, .section-tight { padding: 60px 0; }
  .section-header { grid-template-columns: 1fr; align-items: start; }
  .card-grid, .split, .event-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .event-strip-inner { grid-template-columns: 1fr; }
  .sidebar { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .download-row { grid-template-columns: 1fr; }
  .page-hero { padding: 76px 0 52px; }
  .content-panel, .feature-card { padding: 24px; }
  .floating-rune { width: 68px; height: 68px; right: 12px; bottom: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
