:root {
  --ink: #f5f1eb;
  --muted: #aaa8a3;
  --paper: #080a0b;
  --panel: #111416;
  --cream: #ebe5dc;
  --dark-ink: #111315;
  --red: #f14b5d;
  --red-dark: #a72b39;
  --gold: #d8b074;
  --line: rgba(255, 255, 255, 0.16);
  --dark-line: rgba(17, 19, 21, 0.18);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  content: "";
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
p { margin: 0; color: var(--muted); }
h1, h2, h3 { margin: 0; overflow-wrap: anywhere; }
h1, h2 {
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.88;
}
h1 { max-width: 990px; font-size: clamp(4.2rem, 9vw, 9.6rem); }
h2 { font-size: clamp(3.2rem, 6.8vw, 7.4rem); }
h1 em, h2 em {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}
.container { width: min(1320px, calc(100% - 64px)); margin-inline: auto; }
.section { padding: clamp(90px, 11vw, 170px) 0; }
.eyebrow {
  margin: 0 0 20px;
  color: var(--red);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.section-number {
  color: rgba(255, 255, 255, 0.32);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-style: italic;
}
.lead {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1.35;
}

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(to bottom, rgba(3, 5, 6, 0.8), transparent);
}
.nav-wrap {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; }
.brand img { width: 156px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.site-nav a:hover, .site-nav a:focus { color: #fff; }
.site-nav .nav-contact {
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
}
.nav-toggle span { display: block; height: 1px; margin: 5px 0; background: #fff; }

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: flex-end;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 4, 5, 0.9) 0%, rgba(2, 4, 5, 0.5) 48%, rgba(2, 4, 5, 0.1) 77%),
    linear-gradient(0deg, rgba(2, 4, 5, 0.96) 0%, transparent 55%),
    url("../images/tournament/score8-triton-stage.jpg") center / cover no-repeat;
  transform: scale(1.01);
}
.hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 60px;
  align-items: end;
  padding-top: 180px;
  padding-bottom: 80px;
}
.hero__copy { max-width: 920px; }
.hero__lede {
  max-width: 650px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero__index { padding: 22px 0 22px 24px; border-left: 1px solid rgba(255, 255, 255, 0.35); }
.hero__index span, .hero__index small {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.6;
  text-transform: uppercase;
}
.hero__index strong {
  display: block;
  margin: 5px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 400;
}
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 180ms ease;
}
.button:hover, .button:focus { transform: translateY(-2px); }
.button--primary { color: #fff; border-color: var(--red); background: var(--red); }
.button--primary:hover, .button--primary:focus { background: #ff6575; }
.button--line { color: #fff; border-color: rgba(255, 255, 255, 0.4); background: rgba(0, 0, 0, 0.12); }
.button--dark { color: #fff; background: var(--dark-ink); }
.text-link {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.text-link--light { color: #fff; }

.manifesto { background: #0d1011; }
.manifesto__grid {
  display: grid;
  grid-template-columns: 60px minmax(0, 1.15fr) minmax(330px, 0.7fr);
  gap: clamp(30px, 6vw, 100px);
  align-items: start;
}
.manifesto__copy { padding-top: 42px; }
.manifesto__copy > p + p { margin-top: 24px; }

.feature {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
}
.feature__media {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
}
.feature__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 5, 6, 0.92), rgba(2, 5, 6, 0.3) 58%, rgba(2, 5, 6, 0.08));
  content: "";
}
.feature__media--stage { background-image: url("../images/tournament/score8-tournament-focus.jpg"); }
.feature__media--arrival { background-image: url("../images/tournament/score8-montenegro-arrival.jpg"); }
.feature__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 92svh;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 120px;
  padding-bottom: 90px;
}
.feature__content h2 { max-width: 850px; }
.feature__content > p:last-of-type { max-width: 570px; margin-top: 28px; color: rgba(255, 255, 255, 0.72); font-size: 1.08rem; }
.feature__content--right { align-items: flex-start; padding-left: 50%; }
.feature__caption {
  position: absolute;
  right: 24px;
  bottom: 40px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.journal { color: var(--dark-ink); background: var(--cream); }
.journal .eyebrow { color: var(--red-dark); }
.journal .section-number { color: rgba(17, 19, 21, 0.4); }
.journal__head {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: end;
  margin-bottom: 80px;
}
.journal__head > p { padding-bottom: 8px; color: #5c5b57; font-size: 1.05rem; }
.journal__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 22px;
  align-items: start;
}
.photo-card { position: relative; margin: 0; overflow: hidden; background: #111; box-shadow: var(--shadow); }
.photo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms ease; }
.photo-card:hover img { transform: scale(1.025); }
.photo-card--wide { aspect-ratio: 1.45 / 1; }
.photo-card--tall { aspect-ratio: 0.7 / 1; margin-top: 90px; }
.photo-card::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3, 5, 6, 0.82), transparent 55%); content: ""; }
.photo-card figcaption { position: absolute; right: 28px; bottom: 26px; left: 28px; z-index: 2; color: #fff; }
.photo-card figcaption span { display: block; color: var(--red); font-size: 0.58rem; font-weight: 900; letter-spacing: 0.18em; text-transform: uppercase; }
.photo-card figcaption strong { display: block; margin-top: 5px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.6rem, 3vw, 3rem); font-style: italic; font-weight: 400; line-height: 1.05; }
.journal__closing {
  display: grid;
  grid-template-columns: 0.45fr minmax(0, 1.2fr) auto;
  gap: 40px;
  align-items: end;
  margin-top: 110px;
}
.journal__closing blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5.4vw, 5.8rem);
  font-style: italic;
  letter-spacing: -0.05em;
  line-height: 1;
}

.page-hero {
  position: relative;
  display: flex;
  min-height: 78svh;
  align-items: flex-end;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}
.page-hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 5, 6, 0.94), rgba(3, 5, 6, 0.42) 65%, rgba(3, 5, 6, 0.12)), linear-gradient(0deg, rgba(3, 5, 6, 0.75), transparent 55%);
  content: "";
}
.page-hero--about { background-image: url("../images/tournament/score8-tournament-focus.jpg"); }
.page-hero--contact { background-image: url("../images/tournament/score8-montenegro-arrival.jpg"); }
.page-hero--privacy { background-image: url("../images/tournament/score8-triton-stage.jpg"); }
.page-hero__content { position: relative; z-index: 2; padding-top: 190px; padding-bottom: 80px; }
.page-hero__content h1 { max-width: 1050px; font-size: clamp(3.8rem, 8vw, 8.5rem); }
.page-hero__content > p:last-child { max-width: 660px; margin-top: 28px; color: rgba(255, 255, 255, 0.72); font-size: 1.1rem; }
.page-hero__label {
  position: absolute;
  right: 25px;
  bottom: 50px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.principles { background: #0d1011; }
.principles__intro {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: clamp(30px, 6vw, 100px);
  align-items: end;
}
.principles__intro .lead { padding-bottom: 4px; }
.principles__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 100px;
  border-top: 1px solid var(--line);
}
.principles__list article { padding: 30px 34px 10px 0; border-right: 1px solid var(--line); }
.principles__list article + article { padding-left: 34px; }
.principles__list article:last-child { border-right: 0; }
.principles__list span, .policy article > span { color: var(--red); font-family: Georgia, "Times New Roman", serif; font-size: 0.85rem; font-style: italic; }
.principles__list h3 { margin: 40px 0 14px; font-size: 1.3rem; letter-spacing: -0.04em; }
.feature--about .feature__media::after { background: linear-gradient(90deg, rgba(3, 5, 6, 0.12), rgba(3, 5, 6, 0.55) 55%, rgba(3, 5, 6, 0.94)); }

.contact-section, .policy-section { background: var(--cream); color: var(--dark-ink); }
.contact-layout { display: grid; grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.15fr); gap: clamp(60px, 10vw, 160px); }
.contact-intro h2 { font-size: clamp(3rem, 5vw, 5.7rem); }
.contact-intro > p:not(.eyebrow) { max-width: 430px; margin-top: 28px; color: #5a5a56; }
.contact-email { display: inline-flex; gap: 14px; margin-top: 35px; padding-bottom: 4px; border-bottom: 1px solid var(--dark-ink); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 25px 18px; padding-top: 8px; }
.field { grid-column: 1 / -1; }
.field--half { grid-column: auto; }
.field label { display: block; margin-bottom: 8px; font-size: 0.62rem; font-weight: 900; letter-spacing: 0.15em; text-transform: uppercase; }
.field input, .field textarea {
  width: 100%;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid var(--dark-line);
  border-radius: 0;
  color: var(--dark-ink);
  outline: 0;
  background: transparent;
}
.field textarea { min-height: 145px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--red-dark); }
.contact-form .button { width: fit-content; margin-top: 10px; }
.form-note { align-self: center; color: #6a6964; font-size: 0.72rem; }

.policy-layout { display: grid; grid-template-columns: minmax(230px, 0.42fr) minmax(0, 1fr); gap: clamp(60px, 10vw, 160px); align-items: start; }
.policy-aside { position: sticky; top: 40px; }
.policy-aside > p:not(.eyebrow) { color: #555550; font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; line-height: 1.4; }
.policy-aside span { display: block; margin-top: 28px; color: #73716b; font-size: 0.6rem; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; }
.policy article { display: grid; grid-template-columns: 45px 1fr; gap: 20px; padding: 0 0 42px; border-bottom: 1px solid var(--dark-line); }
.policy article + article { padding-top: 42px; }
.policy h2 { margin-bottom: 14px; font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1; }
.policy p { color: #575651; }
.inline-link { color: var(--dark-ink); text-decoration: underline; text-decoration-color: var(--red); text-underline-offset: 4px; }

.site-footer { padding: 60px 0 24px; border-top: 1px solid var(--line); background: #070809; }
.footer-wrap { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; align-items: center; }
.footer-brand img { width: 145px; }
.footer-wrap > p { color: rgba(255, 255, 255, 0.65); font-family: Georgia, "Times New Roman", serif; font-style: italic; text-align: center; }
.footer-wrap nav { display: flex; justify-content: flex-end; gap: 20px; color: rgba(255, 255, 255, 0.55); font-size: 0.6rem; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; }
.footer-legal { display: flex; justify-content: space-between; gap: 20px; margin-top: 46px; padding-top: 20px; border-top: 1px solid var(--line); }
.footer-legal p { font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; }

@media (max-width: 1000px) {
  .hero__layout, .manifesto__grid, .journal__head, .principles__intro, .contact-layout, .policy-layout { grid-template-columns: 1fr; }
  .hero__index, .section-number { display: none; }
  .manifesto__copy { padding-top: 0; }
  .journal__head, .principles__intro { gap: 26px; }
  .journal__head > p { max-width: 600px; }
  .journal__closing { grid-template-columns: 1fr; }
  .journal__closing .button { width: fit-content; }
  .feature__content--right { padding-left: 32px; }
  .policy-aside { position: static; max-width: 620px; }
}
@media (max-width: 820px) {
  .container { width: min(100% - 36px, 1320px); }
  .nav-wrap { min-height: 78px; }
  .brand img { width: 140px; }
  .nav-toggle { display: inline-block; }
  .site-nav {
    position: absolute;
    top: 76px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    background: #0b0d0e;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 14px 10px; }
  .site-nav .nav-contact { border: 0; border-radius: 0; }
  .hero__layout { padding-top: 150px; padding-bottom: 58px; }
  .hero__media { background-position: 58% center; }
  .feature__caption, .page-hero__label { display: none; }
  .journal__grid { grid-template-columns: 1fr; }
  .photo-card--wide, .photo-card--tall { aspect-ratio: 1 / 1; margin-top: 0; }
  .photo-card--tall img { object-position: 58% center; }
  .principles__list { grid-template-columns: 1fr; margin-top: 65px; }
  .principles__list article, .principles__list article + article { padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .principles__list h3 { margin-top: 18px; }
  .feature--about .feature__media::after { background: linear-gradient(0deg, rgba(3, 5, 6, 0.9), rgba(3, 5, 6, 0.15)); }
  .feature__content--right { justify-content: flex-end; padding-left: 18px; }
  .field--half { grid-column: 1 / -1; }
  .footer-wrap { grid-template-columns: 1fr; }
  .footer-wrap > p { text-align: left; }
  .footer-wrap nav { justify-content: flex-start; }
}
@media (max-width: 560px) {
  h1 { font-size: clamp(3.7rem, 18vw, 5.3rem); }
  h2 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .section { padding: 80px 0; }
  .hero { min-height: 92svh; }
  .hero__actions, .hero__actions .button { width: 100%; }
  .feature, .feature__content { min-height: 78svh; }
  .feature__media--stage { background-position: 57% center; }
  .feature__media--arrival { background-position: 60% center; }
  .feature__content, .feature__content--right { padding-bottom: 52px; }
  .journal__closing { margin-top: 75px; }
  .photo-card figcaption { right: 20px; bottom: 20px; left: 20px; }
  .page-hero { min-height: 68svh; }
  .page-hero__content { padding-top: 145px; padding-bottom: 54px; }
  .page-hero--contact { background-position: 61% center; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form .button { width: 100%; }
  .policy article { grid-template-columns: 1fr; gap: 12px; }
  .footer-legal { flex-direction: column; gap: 8px; }
}
