/* Shared WP Clock site styles (Phase 1 base). */

@font-face {
  font-family: "WP Clock";
  src: url("fonts/helvetica_neute_lt_35_thin.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "WP Clock";
  src: url("fonts/helvetica_neute_lt_63_md_ex.ttf") format("truetype");
  font-weight: 500;
  font-stretch: expanded;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "WP Clock";
  src: url("fonts/helvetica_neute_lt_83_heavy_ex.ttf") format("truetype");
  font-weight: 800;
  font-stretch: expanded;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

:root {
  --font-heavy: "WP Clock", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-thin: "WP Clock", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-medium-ext: "WP Clock", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

h1,
h2,
.hero h1,
.split-copy h2 {
  font-family: var(--font-heavy);
  font-weight: 800;
  font-stretch: expanded;
}

.section-label,
.hero-tag {
  font-family: var(--font-thin);
  font-weight: 300;
}

a { text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  max-width: var(--max, 52rem);
  margin: 0 auto;
  padding: 0 1.25rem;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  text-decoration: none;
}

.logo:hover { text-decoration: none; }

.logo-img {
  display: block;
  height: clamp(1.5rem, 4.5vw, 2rem);
  width: auto;
  max-width: 10.5rem;
}

nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.accent-line {
  width: 4.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-orange, #ffc107), transparent);
}

footer {
  border-top: 1px solid var(--outline, rgba(192, 202, 245, 0.2));
  padding: 2rem 0 2.5rem;
  margin-top: 1rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

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

