@font-face {
  font-family: 'Open Sauce One';
  src: url('https://cdn.jsdelivr.net/gh/marcologous/Open-Sauce-Fonts@master/fonts/OpenSauceOne-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Open Sauce One';
  src: url('https://cdn.jsdelivr.net/gh/marcologous/Open-Sauce-Fonts@master/fonts/OpenSauceOne-Medium.ttf') format('truetype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Open Sauce One';
  src: url('https://cdn.jsdelivr.net/gh/marcologous/Open-Sauce-Fonts@master/fonts/OpenSauceOne-SemiBold.ttf') format('truetype');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Open Sauce One';
  src: url('https://cdn.jsdelivr.net/gh/marcologous/Open-Sauce-Fonts@master/fonts/OpenSauceOne-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --orange: #C84B11;
  --black:  #111111;
  --gray:   #555555;
  --light:  #999999;
  --rule:   #E2E2E2;
  --bg:     #FAFAFA;
  --white:  #FFFFFF;
  --f: 'Open Sauce One', system-ui, sans-serif;
}

body { font-family: var(--f); background: var(--white); color: var(--black); line-height: 1.6; overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--white); border-bottom: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 7%; height: 64px;
}
.nav-logo img { height: 40px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--gray); text-decoration: none; transition: color .15s; }
.nav-links a:hover { color: var(--black); }
.nav-cta { background: var(--orange) !important; color: var(--white) !important; padding: 8px 18px; font-weight: 600 !important; font-size: 13px !important; border-radius: 3px; }
.nav-cta:hover { opacity: .88; }

/* LEGAL PAGE LAYOUT */
.legal-wrap { max-width: 780px; margin: 0 auto; padding: 100px 6% 80px; }
.legal-wrap h1 { font-size: 32px; font-weight: 700; color: var(--black); letter-spacing: -.02em; margin-bottom: 6px; }
.legal-wrap .effective { font-size: 13px; color: var(--light); margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid var(--rule); }
.legal-wrap h2 { font-size: 16px; font-weight: 700; color: var(--black); margin: 32px 0 10px; letter-spacing: -.01em; }
.legal-wrap p { font-size: 14px; color: var(--gray); line-height: 1.8; margin-bottom: 14px; }
.legal-wrap ul { padding-left: 20px; margin-bottom: 14px; }
.legal-wrap li { font-size: 14px; color: var(--gray); line-height: 1.8; margin-bottom: 6px; }
.legal-wrap a { color: var(--orange); text-decoration: none; }
.legal-wrap a:hover { text-decoration: underline; }
.legal-wrap .contact-block { background: var(--bg); border: 1px solid var(--rule); border-radius: 4px; padding: 24px 28px; margin-top: 32px; }
.legal-wrap .contact-block p { margin: 0; line-height: 1.7; }

/* FOOTER */
footer { border-top: 1px solid var(--rule); padding: 48px 7% 32px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-logo img { height: 36px; width: auto; display: block; margin-bottom: 12px; }
.footer-logo p { font-size: 13px; color: var(--light); line-height: 1.6; max-width: 200px; }
.footer-col h5 { font-size: 12px; font-weight: 600; color: var(--black); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { font-size: 13px; color: var(--light); text-decoration: none; transition: color .15s; }
.footer-col a:hover { color: var(--black); }
.footer-bottom { border-top: 1px solid var(--rule); padding-top: 24px; max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p, .footer-bottom a { font-size: 12px; color: var(--light); text-decoration: none; }
.footer-bottom a:hover { color: var(--black); }
.footer-bottom-links { display: flex; gap: 20px; }

@media (max-width: 860px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 540px) {
  .footer-inner { grid-template-columns: 1fr; }
}
