/* ── FONTS ─────────────────────────────────────────────── */
@font-face {
  font-family: 'The Seasons';
  src: url('fonts/the-seasons/Fontspring-DEMO-theseasons-lt.otf') format('opentype');
  font-weight: 300;
}
@font-face {
  font-family: 'The Seasons';
  src: url('fonts/the-seasons/Fontspring-DEMO-theseasons-reg.otf') format('opentype');
  font-weight: 400;
}
@font-face {
  font-family: 'The Seasons';
  src: url('fonts/the-seasons/Fontspring-DEMO-theseasons-it.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'Glacial Indifference';
  src: url('fonts/glacial-indifference/GlacialIndifference-Regular.otf') format('opentype');
  font-weight: 400;
}
@font-face {
  font-family: 'Glacial Indifference';
  src: url('fonts/glacial-indifference/GlacialIndifference-Bold.otf') format('opentype');
  font-weight: 700;
}
@font-face {
  font-family: 'Biro Script';
  src: url('fonts/biro-script/Biro_Script_reduced.ttf') format('truetype');
  font-weight: 400;
}
@font-face {
  font-family: 'Roboto';
  src: url('fonts/roboto/Roboto-Regular.ttf') format('truetype');
  font-weight: 400;
}
@font-face {
  font-family: 'Roboto';
  src: url('fonts/roboto/Roboto-Bold.ttf') format('truetype');
  font-weight: 700;
}

/* ── TOKENS ────────────────────────────────────────────── */
:root {
  --red:   #B21617;
  --bone:  #F4F1EC;
  --black: #000000;
  --white: #ffffff;
  --nav-h: 72px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bone);
  color: var(--black);
  font-family: 'Glacial Indifference', sans-serif;
  overflow-x: hidden;
}

/* ── UTIL ──────────────────────────────────────────────── */
.label {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

/* ── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  border-radius: 100px;
  padding: 12px 28px;
  text-align: center;
}
.btn-red   { background: var(--red);   color: var(--white); border: 1px solid transparent; }
.btn-red:hover   { background: #8e1213; }
.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { background: var(--bone); }
.btn-black { background: var(--black); color: var(--bone); }
.btn-black:hover { background: #1a1a1a; }
.btn-outline-w { background: transparent; border: 1px solid rgba(255,255,255,0.5); color: var(--white); }
.btn-outline-w:hover { background: var(--white); color: var(--black); }
.btn-outline-w-black { background: transparent; border: 1px solid rgba(255,255,255,0.5); color: var(--white); }
.btn-outline-w-black:hover { background: var(--black); border-color: var(--black); color: var(--bone); }
.btn-outline-b { background: transparent; border: 1px solid rgba(0,0,0,0.28); color: var(--black); }
.btn-outline-b:hover { background: var(--black); color: var(--bone); }
.btn-outline-r { background: transparent; border: 1px solid var(--red); color: var(--red); }
.btn-outline-r:hover { background: var(--red); color: var(--white); }
.btn-outline-b-red { background: transparent; border: 1px solid rgba(0,0,0,0.28); color: var(--black); }
.btn-outline-b-red:hover { background: var(--red); border-color: var(--red); color: var(--white); }

/* ── NAV ───────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  height: var(--nav-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 44px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease;
}
nav.scrolled {
  background: var(--bone);
  border-bottom-color: rgba(0,0,0,0.08);
}
.nav-logo img {
  height: 52px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.4s ease;
  display: block;
}
nav.scrolled .nav-logo img { filter: none; }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
nav.scrolled .nav-links a { color: var(--black); }
nav.scrolled .nav-links a:hover { color: var(--red); }

.nav-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
.nav-icons svg {
  width: 18px; height: 18px;
  stroke: rgba(255,255,255,0.7);
  fill: none;
  cursor: pointer;
  transition: stroke 0.2s;
}
.nav-icons svg:hover { stroke: var(--white); }
nav.scrolled .nav-icons svg { stroke: rgba(0,0,0,0.55); }
nav.scrolled .nav-icons svg:hover { stroke: var(--black); }

/* ── FOOTER ────────────────────────────────────────────── */
footer {
  background: var(--bone);
  padding: 44px 52px;
  border-top: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
footer img { height: 36px; object-fit: contain; }
.footer-links { display: flex; gap: 28px; list-style: none; flex-wrap: wrap; }
.footer-links a {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--black);
  text-decoration: none;
  opacity: 0.32;
  transition: opacity 0.2s;
}
.footer-links a:hover { opacity: 1; }
.footer-copy {
  font-family: 'Glacial Indifference', sans-serif;
  font-size: 11px;
  color: rgba(0,0,0,0.28);
}

/* ── MOBILE ────────────────────────────────────────────── */
@media (max-width: 860px) {
  :root { --nav-h: 60px; }
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-logo img { height: 40px; }
  footer { padding: 36px 24px; flex-direction: column; text-align: center; }
}
