* {
  box-sizing: border-box;
}

:root {
  --ink: #1f2421;
  --cream: #f4efe5;
  --paper: #fbf8f2;
  --sage: #7f8f7b;
  --terracotta: #b86f52;
  --slate: #5d6770;
  --gold: #b38a50;
  --line: rgba(31, 36, 33, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(251, 248, 242, 0.9);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1;
}

.brand-sub {
  font-size: 0.68rem;
  letter-spacing: 0.34em;
  margin-top: 5px;
}

nav {
  display: flex;
  gap: 24px;
}

nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
}

.seriesium-mark {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--line);
  overflow: hidden;
}

.seriesium-mark::before,
.seriesium-mark::after {
  content: "";
  position: absolute;
  background: var(--paper);
  border-radius: 999px;
  z-index: 4;
}

.seriesium-mark::before {
  width: 31px;
  height: 13px;
  top: 8px;
  left: 9px;
  transform: rotate(-20deg);
}

.seriesium-mark::after {
  width: 31px;
  height: 13px;
  bottom: 8px;
  right: 9px;
  transform: rotate(-20deg);
}

.seg {
  position: absolute;
  width: 50%;
  height: 50%;
}

.seg-1 { left: 0; top: 0; background: var(--sage); }
.seg-2 { right: 0; top: 0; background: var(--terracotta); }
.seg-3 { left: 0; bottom: 0; background: var(--gold); }
.seg-4 { right: 0; bottom: 0; background: var(--slate); }

.hero {
  padding: 88px 0 76px;
  background:
    radial-gradient(circle at 80% 10%, rgba(184, 111, 82, 0.12), transparent 34%),
    radial-gradient(circle at 10% 70%, rgba(127, 143, 123, 0.15), transparent 32%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--slate);
  margin: 0 0 14px;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

h1 span {
  color: var(--terracotta);
}

.lede {
  max-width: 720px;
  font-size: 1.16rem;
  color: #4c514e;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, opacity .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--ink);
  color: white;
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.55);
}

.hero-card {
  min-height: 380px;
  background: var(--ink);
  color: white;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  box-shadow: 0 24px 70px rgba(31,36,33,.14);
}

.big-mark {
  width: 180px;
  height: 180px;
  background: #2c312e;
  border-color: rgba(255,255,255,.08);
  margin-bottom: 28px;
}

.big-mark::before,
.big-mark::after {
  background: var(--ink);
}

.big-mark::before {
  width: 120px;
  height: 46px;
  top: 34px;
  left: 35px;
}

.big-mark::after {
  width: 120px;
  height: 46px;
  bottom: 34px;
  right: 35px;
}

.brands-section,
.about-section,
.follow-section {
  padding: 86px 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 38px;
}

.section-heading h2,
.about-section h2,
.follow-section h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  margin-bottom: 14px;
}

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

.brand-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.brand-card h3 {
  font-size: 1.55rem;
  margin-bottom: 10px;
}

.brand-card p {
  color: #555b57;
}

.brand-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--cream);
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 24px;
}

.card-kicker {
  font-size: .72rem;
  letter-spacing: .13em;
  font-weight: 700;
  color: var(--slate) !important;
  margin-bottom: 8px;
}

.text-link {
  margin-top: auto;
  text-decoration: none;
  font-weight: 700;
}

.project-status {
  margin-top: auto;
  align-self: flex-start;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  color: var(--slate) !important;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.text-link span {
  display: inline-block;
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.about-section {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.about-copy {
  font-size: 1.08rem;
  color: #4d534f;
}

.follow-card {
  border-radius: 30px;
  background: linear-gradient(135deg, #222724, #343b37);
  color: white;
  padding: 48px;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.follow-card p {
  max-width: 720px;
  color: rgba(255,255,255,.78);
}

.follow-card .eyebrow {
  color: rgba(255,255,255,.6);
}

.follow-card .btn-primary {
  background: white;
  color: var(--ink);
  flex: 0 0 auto;
}

footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-wrap p {
  margin: 4px 0 0;
  color: #6a706c;
  font-size: .88rem;
}

@media (max-width: 820px) {
  nav {
    display: none;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-card {
    min-height: 300px;
  }

  .brand-grid {
    grid-template-columns: 1fr;
  }

  .follow-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav-wrap {
    min-height: 70px;
  }

  .brand-name {
    font-size: .86rem;
  }

  h1 {
    font-size: 2.65rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .brands-section,
  .about-section,
  .follow-section {
    padding: 64px 0;
  }

  .follow-card {
    padding: 32px 26px;
  }

  .footer-wrap {
    align-items: flex-start;
    flex-direction: column;
  }
}

.coming-soon {
  color: #8a8f8b;
  cursor: default;
}

.btn-disabled {
  opacity: 0.65;
  cursor: default;
  pointer-events: none;
}


/* V3 accessibility/privacy additions */
.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 9999;
  background: #fff;
  color: #111;
  border: 2px solid #111;
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { top: 16px; }

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #111;
  outline-offset: 4px;
  border-radius: 4px;
}

nav a,
.text-link,
.footer-links a {
  text-underline-offset: 3px;
}

nav a:hover,
nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  text-decoration: underline;
}

.footer-meta { text-align: right; }

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-links a { font-weight: 600; }

.legal-main { padding: 64px 0 90px; }

.legal-shell { max-width: 820px; }

.legal-shell h1 {
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 16px;
}

.legal-shell h2 {
  font-size: 1.55rem;
  margin-top: 42px;
  margin-bottom: 10px;
}

.legal-shell p,
.legal-shell li { color: #444a46; }

.legal-shell ul { padding-left: 22px; }

.legal-note {
  background: #f4efe5;
  border: 1px solid rgba(31,36,33,.12);
  border-radius: 16px;
  padding: 18px 20px;
  margin: 26px 0;
}

.legal-back {
  display: inline-block;
  margin-top: 34px;
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 520px) {
  .footer-meta { text-align: left; }
  .footer-links { justify-content: flex-start; }
}
