/* ourguess.com — base tokens + header/footer, converted from design/SiteHeader.dc.html and design/SiteFooter.dc.html */

:root {
  --bg: #FFFFFF;
  --header-bg: rgba(255, 255, 255, .86);
  --panel: #FFFFFF;
  --ink: #20291F;
  --ink-soft: #6E7568;
  --line: #ECECE6;
  --line-strong: #DADAD2;
  --nav-hover: #F4F4EF;
  --accent: #C6D82E;
  --btn-bg: #C6D82E;
  --btn-fg: #1A1E12;
  --shadow: 0 1px 2px rgba(0, 0, 0, .04), 0 12px 34px rgba(0, 0, 0, .06);
}

[data-theme="dark"] {
  --bg: #14211B;
  --header-bg: rgba(20, 33, 27, .86);
  --panel: #1C2B24;
  --ink: #F3EAD5;
  --ink-soft: #9DAA9C;
  --line: #2A3B32;
  --line-strong: #3B5044;
  --nav-hover: #233428;
  --accent: #C6D82E;
  --btn-bg: #C6D82E;
  --btn-fg: #1A1E12;
  --shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 14px 38px rgba(0, 0, 0, .45);
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  min-height: 100vh;
  transition: background .3s, color .3s;
}

::selection {
  background: rgba(198, 216, 46, .4);
}

a {
  text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ---------- Header ---------- */

.og-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--header-bg);
  border-bottom: 1.5px solid var(--line);
  backdrop-filter: saturate(1.2) blur(8px);
}

.og-header__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.og-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex: none;
}

.og-brand__mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: conic-gradient(from 210deg, #C6D82E, #3DBE9B, #2E9BE0, #8A6FE8, #F25C7A, #F2A81D, #C6D82E);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .14);
}

.og-brand__word {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -.6px;
  display: flex;
}

.og-brand__word span:nth-child(1),
.og-brand__word span:nth-child(7) { color: #F25C7A; }
.og-brand__word span:nth-child(2),
.og-brand__word span:nth-child(8) { color: #F2A81D; }
.og-brand__word span:nth-child(3) { color: #C6D82E; }
.og-brand__word span:nth-child(4) { color: #3DBE9B; }
.og-brand__word span:nth-child(5) { color: #2E9BE0; }
.og-brand__word span:nth-child(6) { color: #8A6FE8; }

.og-actions {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: none;
}

.og-icon-btn {
  background: var(--panel);
  border: 1.5px solid var(--line);
  color: var(--ink-soft);
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex: none;
}

.og-icon-btn:hover {
  border-color: var(--accent);
  color: var(--ink);
}

.og-header-subscribe {
  background: var(--btn-bg);
  color: var(--btn-fg);
  border-radius: 12px;
  padding: 0 18px;
  height: 40px;
  display: none;
  align-items: center;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -.2px;
}

.og-header-subscribe:hover {
  filter: brightness(.96);
}

@media (min-width: 820px) {
  .og-header-subscribe {
    display: inline-flex;
  }
}

.og-burger {
  color: var(--ink);
}

.og-drawer {
  display: none;
  border-top: 1.5px solid var(--line);
  background: var(--header-bg);
}

.og-drawer.is-open {
  display: block;
}

.og-drawer__nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.og-nav-link {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 12px;
  border-radius: 12px;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
}

.og-nav-link:hover {
  background: var(--nav-hover);
}

.og-drawer__subscribe {
  margin-top: 6px;
  text-align: center;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border-radius: 12px;
  padding: 14px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 15px;
}

/* ---------- Footer (always dark, independent of site theme toggle) ---------- */

.og-footer {
  background: #14211B;
  color: #F3EAD5;
  font-family: "Hanken Grotesk", sans-serif;
  overflow: hidden;
}

.og-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 22px 30px;
}

.og-footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 40px;
  border-bottom: 1.5px solid #2A3B32;
}

.og-footer-cta__eyebrow {
  font-family: "Space Mono", monospace;
  font-size: 12px;
  color: #C6D82E;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.og-footer-cta__title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.02;
  letter-spacing: -1.2px;
  margin: 0;
  color: #F6F0DE;
  max-width: 14ch;
  text-wrap: balance;
}

.og-footer-cta__btn {
  flex: none;
  background: #C6D82E;
  color: #14211B;
  border-radius: 14px;
  padding: 16px 30px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 16.5px;
  letter-spacing: -.2px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.og-footer-cta__btn:hover {
  filter: brightness(.95);
}

.og-footer-links {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px 40px;
  padding: 40px 0 46px;
}

.og-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.og-footer-brand__mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: conic-gradient(from 210deg, #C6D82E, #3DBE9B, #2E9BE0, #8A6FE8, #F25C7A, #F2A81D, #C6D82E);
  border-radius: 11px;
}

.og-footer-brand__word {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -.5px;
  color: #F3EAD5;
}

.og-footer-tagline {
  font-size: 14px;
  color: #9DAA9C;
  margin: 0;
  line-height: 1.55;
  max-width: 30ch;
}

.og-footer-col-title {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  color: #7E8C7C;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.og-footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.og-footer-link {
  font-size: 14.5px;
  font-weight: 600;
  color: #D7E0D2;
  transition: color .15s;
}

.og-footer-link:hover {
  color: #C6D82E;
}

.og-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding-bottom: 14px;
}

.og-copyright {
  font-family: "Space Mono", monospace;
  font-size: 12px;
  color: #7E8C7C;
}

.og-legal-links {
  display: flex;
  gap: 18px;
}

.og-legal-link {
  font-family: "Space Mono", monospace;
  font-size: 12px;
  color: #7E8C7C;
  transition: color .15s;
}

.og-legal-link:hover {
  color: #F3EAD5;
}

.og-word {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 17.5vw;
  line-height: 1;
  letter-spacing: -.04em;
  text-align: center;
  white-space: nowrap;
  padding: 24px 10px 0;
  background: linear-gradient(90deg, #F25C7A, #F2A81D, #C6D82E, #3DBE9B, #2E9BE0, #8A6FE8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: .9;
}

@media (max-width: 760px) {
  .og-footer-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
  }
  .og-footer-links {
    grid-template-columns: 1fr 1fr;
  }
  .og-word {
    font-size: 23vw;
  }
  .og-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}
