:root {
  --ink: #173329;
  --ink-deep: #0b241c;
  --paper: #f8f7f1;
  --white: #ffffff;
  --sage: #dce5dd;
  --gold: #c99a48;
  --line: #cfd7d0;
  --text: #263630;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a { color: inherit; text-underline-offset: 0.2em; }

.site-header {
  min-height: 104px;
  padding: 20px clamp(24px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--ink-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
}

nav { display: flex; gap: clamp(18px, 3vw, 42px); }

nav a {
  color: var(--ink-deep);
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

nav a:hover,
nav a.active { border-bottom-color: var(--gold); }

.hero,
.page-hero {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(11, 36, 28, 0.98), rgba(23, 51, 41, 0.9)),
    repeating-linear-gradient(135deg, transparent 0 30px, rgba(255,255,255,.04) 30px 31px);
}

.hero { padding: clamp(80px, 12vw, 160px) clamp(24px, 7vw, 110px); }

.hero-inner { max-width: 1000px; }

.page-hero { padding: clamp(64px, 9vw, 110px) clamp(24px, 7vw, 110px); }

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
}

h1 { max-width: 1040px; font-size: clamp(3rem, 7vw, 6.8rem); font-weight: 500; }

.page-hero h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }

.page-hero h1 a { text-decoration-thickness: 2px; }

h2 { color: var(--ink-deep); font-size: clamp(1.9rem, 3.6vw, 3.5rem); font-weight: 500; }

.hero-copy {
  max-width: 820px;
  margin: 32px 0 0;
  color: #e4e9e5;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
}

.content-section,
.event-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 118px) 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.6fr);
  gap: clamp(36px, 8vw, 110px);
}

.section-number { margin: 0 0 10px; color: var(--gold); font-weight: 800; letter-spacing: 0.14em; }
.prose p { margin: 0 0 24px; }
.large-prose { font-size: clamp(1.2rem, 2vw, 1.55rem); }
.intro { max-width: 800px; margin: 0 0 48px; font-size: clamp(1.2rem, 2vw, 1.5rem); }

.competition-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.competition-card {
  padding: clamp(28px, 4vw, 44px);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
}

.competition-card h2 { margin-bottom: 24px; font-size: clamp(1.45rem, 2.4vw, 2.1rem); }
.competition-card ul,
.wids-intro ul { margin: 0; padding-left: 1.3rem; }
.competition-card li + li,
.wids-intro li + li { margin-top: 10px; }
.competition-card a,
.text-link { color: var(--ink); font-weight: 700; }

.wids-intro {
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(40px, 8vw, 110px);
}

.wids-intro img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}

.wids-intro h2 { margin: 48px 0 22px; }

.event-section {
  display: grid;
  grid-template-columns: 150px minmax(0, 760px);
  gap: clamp(32px, 7vw, 80px);
  border-top: 1px solid var(--line);
}

.event-date {
  width: 132px;
  height: 148px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--ink);
}

.event-date span { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; }
.event-date strong { font-family: Georgia, "Times New Roman", serif; font-size: 3rem; line-height: 1; }
.event-section h2 { margin-bottom: 24px; }
.event-section article > p:not(.eyebrow) { font-size: 1.1rem; }

.site-footer {
  min-height: 210px;
  padding: 52px clamp(24px, 7vw, 110px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  color: #d9e1dc;
  background: var(--ink-deep);
}

.site-footer div { display: grid; gap: 10px; }
.site-footer strong { color: var(--white); font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; }
.site-footer p { margin: 0; font-size: 0.9rem; }

@media (max-width: 760px) {
  .site-header,
  .site-footer { align-items: flex-start; flex-direction: column; }
  nav { width: 100%; gap: 18px; overflow-x: auto; }
  .two-column,
  .competition-grid,
  .wids-intro,
  .event-section { grid-template-columns: 1fr; }
  .event-section { gap: 28px; }
}
