:root {
  --orange: #ff4d00;
  --orange-deep: #d93d00;
  --orange-soft: #ff7a3d;
  --orange-wash: rgba(255, 77, 0, 0.12);
  --white: #ffffff;
  --paper: #fff7f2;
  --ink: #16120f;
  --ink-muted: #5c534c;
  --line: rgba(22, 18, 15, 0.12);
  --radius: 999px;
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --font-oozzyy: "Outfit", system-ui, sans-serif;
  --font-serif: "Source Serif 4", Georgia, serif;
  --font-metal: "Metal Mania", cursive;
  --oozzyy-bg: #0f1a14;
  --oozzyy-sage: #7cb87c;
  --oozzyy-gold: #c9b896;
  --shop-cream: #f5f0eb;
  --shop-red: #a32f2f;
  --shop-metal: #a84848;
  --locker-navy: #0c1220;
  --locker-blue: #4f8cff;
  --locker-ice: #c8e0ff;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(255, 77, 0, 0.18), transparent 55%),
    radial-gradient(900px 500px at -10% 20%, rgba(255, 122, 61, 0.12), transparent 50%),
    linear-gradient(180deg, var(--white) 0%, var(--paper) 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--white);
  border-radius: 0.5rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-wash);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius);
  color: var(--ink-muted);
  font-weight: 500;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  background: var(--orange-wash);
}

.nav-cta {
  background: var(--ink) !important;
  color: var(--white) !important;
}

.nav-cta:hover {
  background: var(--orange) !important;
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: var(--white);
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.28rem auto;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, #fff 0%, #fff4ee 42%, #ffd4bf 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 77, 0, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 77, 0, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 65% at 70% 40%, #000 20%, transparent 75%);
  animation: grid-drift 18s linear infinite;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  animation: orb-float 8s ease-in-out infinite;
}

.hero-orb--a {
  width: min(48vw, 420px);
  height: min(48vw, 420px);
  right: -6%;
  top: 8%;
  background: radial-gradient(circle at 35% 35%, #ff8a4c, #ff4d00 55%, transparent 70%);
  opacity: 0.85;
}

.hero-orb--b {
  width: min(34vw, 280px);
  height: min(34vw, 280px);
  right: 18%;
  bottom: 12%;
  background: radial-gradient(circle at 40% 40%, #ffb088, #ff4d00 60%, transparent 72%);
  opacity: 0.55;
  animation-delay: -3s;
}

.hero-mark {
  position: absolute;
  width: min(58vw, 520px);
  right: 4%;
  top: 50%;
  transform: translateY(-52%);
  color: rgba(255, 77, 0, 0.28);
  pointer-events: none;
}

.mark-ring,
.mark-slash {
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: draw-mark 1.6s var(--ease) 0.2s forwards;
}

.mark-slash {
  animation-delay: 0.55s;
}

.hero-content {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 4.5rem 0 5rem;
}

.hero-eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  animation: rise 0.9s var(--ease) both;
}

.brand-lockup {
  margin: 0 0 1.25rem;
}

.brand-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.4rem, 11vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
  color: var(--ink);
  animation: rise 0.9s var(--ease) both;
}

.hero-line {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  letter-spacing: -0.03em;
  color: var(--orange);
  animation: rise 0.9s var(--ease) 0.12s both;
}

.hero-support {
  max-width: 34rem;
  margin: 0 0 2rem;
  color: var(--ink-muted);
  font-size: 1.125rem;
  animation: rise 0.9s var(--ease) 0.22s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: rise 0.9s var(--ease) 0.32s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

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

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

.btn-primary:hover {
  background: var(--orange-deep);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange-deep);
}

.section {
  padding: 5.5rem 0;
}

.section-inner {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.section h2,
.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.section h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  max-width: 16ch;
}

.section-lead,
.page-lead {
  margin: 1rem 0 0;
  max-width: 38rem;
  color: var(--ink-muted);
  font-size: 1.125rem;
}

.work {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

.ticker-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  padding: 0.85rem 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
  animation: ticker 32s linear infinite;
}

.ticker-track span:nth-child(3n) {
  color: var(--orange);
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

.houses {
  background: var(--white);
}

.house-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.75rem;
}

.house {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.house:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(22, 18, 15, 0.1);
}

.house-visual {
  position: relative;
  height: 11rem;
  overflow: hidden;
}

.house-icon {
  position: absolute;
  right: 1.1rem;
  bottom: 1rem;
  width: 4.25rem;
  height: 4.25rem;
  opacity: 0.85;
}

.house-grass {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 20%, rgba(15, 26, 20, 0.55)),
    repeating-linear-gradient(-18deg, #1c3326 0 8px, #15261c 8px 16px);
}

.house--oozzyy {
  background: var(--oozzyy-bg);
  color: #f0ebe3;
  border-color: rgba(255, 255, 255, 0.1);
}

.house--oozzyy .house-icon {
  color: var(--oozzyy-sage);
}

.house-rink {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 120%, rgba(163, 47, 47, 0.18), transparent 60%),
    repeating-linear-gradient(90deg, transparent 0 46px, rgba(163, 47, 47, 0.12) 46px 48px),
    var(--shop-cream);
}

.house--proshop {
  background: var(--shop-cream);
  color: #2a2420;
  border-color: #d4ccc4;
}

.house--proshop .house-icon {
  color: var(--shop-red);
}

.house-scan {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(79, 140, 255, 0.18), transparent 55%),
    repeating-linear-gradient(0deg, transparent 0 18px, rgba(200, 224, 255, 0.08) 18px 19px),
    var(--locker-navy);
}

.house--locker {
  background: var(--locker-navy);
  color: #f2f6fc;
  border-color: #2a3650;
}

.house--locker .house-icon {
  color: var(--locker-ice);
}

.house-body {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.4rem 1.4rem 1.55rem;
  flex: 1;
}

.house-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}

.house-name {
  margin: 0;
  font-size: 1.65rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.house-name--oozzyy {
  font-family: var(--font-oozzyy);
  font-weight: 600;
}

.house-name--oozzyy span {
  color: var(--oozzyy-sage);
}

.house-name--metal {
  font-family: var(--font-metal);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--shop-metal);
  -webkit-text-stroke: 1px #4a3f3c;
  paint-order: stroke fill;
  text-shadow:
    1px 0 0 #c4b8b0,
    -1px 0 0 #c4b8b0,
    0 1px 0 #c4b8b0,
    0 -1px 0 #c4b8b0;
}

.house-name--locker {
  font-weight: 800;
  font-family: var(--font-display);
}

.house-name--locker span {
  color: var(--locker-blue);
}

.house-tag {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.35;
}

.house--proshop .house-tag,
.house--locker .house-tag {
  font-family: var(--font-body);
  font-weight: 600;
}

.house--oozzyy .house-tag {
  color: var(--oozzyy-gold);
}

.house--proshop .house-tag {
  color: var(--shop-red);
}

.house--locker .house-tag {
  color: var(--locker-ice);
  font-family: var(--font-display);
}

.house-copy {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  opacity: 0.82;
  flex: 1;
}

.house-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  margin: 0.2rem 0 0.4rem;
  padding: 0;
}

.house-chips li {
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.house--oozzyy .house-chips li {
  background: rgba(124, 184, 124, 0.16);
  color: var(--oozzyy-sage);
}

.house--proshop .house-chips li {
  background: rgba(163, 47, 47, 0.1);
  color: var(--shop-red);
}

.house--locker .house-chips li {
  background: rgba(79, 140, 255, 0.16);
  color: var(--locker-ice);
}

.house-link {
  font-weight: 600;
  font-size: 0.95rem;
}

.house--oozzyy .house-link {
  color: var(--oozzyy-sage);
}

.house--proshop .house-link {
  color: var(--shop-red);
}

.house--locker .house-link {
  color: var(--locker-blue);
}

.approach {
  background:
    linear-gradient(135deg, rgba(255, 77, 0, 0.08), transparent 45%),
    var(--paper);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: end;
}

.approach-copy {
  margin: 0;
  font-size: 1.2rem;
  color: var(--ink-muted);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.pillar {
  padding: 1.5rem 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
}

.pillar-index {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--orange);
}

.pillar h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.pillar p {
  margin: 0;
  color: var(--ink-muted);
}

.cta-band {
  background: var(--orange);
  color: var(--white);
  padding: 4.5rem 0;
}

.cta-band .btn-primary {
  background: var(--white);
  color: var(--orange-deep);
}

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

.cta-band-inner {
  display: grid;
  gap: 1rem;
  justify-items: start;
}

.cta-band h2 {
  max-width: none;
  font-size: clamp(2.1rem, 5vw, 3.5rem);
}

.cta-band p {
  margin: 0;
  max-width: 34rem;
  opacity: 0.92;
  font-size: 1.125rem;
}

.page-hero {
  padding: 4.5rem 0 1rem;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
}

.prose {
  display: grid;
  gap: 1.25rem;
  max-width: 40rem;
}

.prose p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 1.15rem;
}

.prose strong {
  color: var(--ink);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
}

.contact-form span {
  font-weight: 600;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 0.85rem 1rem;
  background: var(--paper);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-wash);
}

.contact-aside {
  padding: 0.5rem 0;
}

.contact-email {
  display: inline-block;
  margin: 0.35rem 0 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  letter-spacing: -0.03em;
  color: var(--orange);
}

.contact-note {
  margin: 0;
  color: var(--ink-muted);
}

.contact-note + .contact-note {
  margin-top: 0.85rem;
}

.footer-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.15rem;
}

.footer-brands a {
  color: var(--ink-muted);
  font-weight: 500;
  font-size: 0.92rem;
}

.footer-brands a:hover {
  color: var(--orange);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-inner {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 1.75rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes draw-mark {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes orb-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-18px) scale(1.04);
  }
}

@keyframes grid-drift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 56px 56px, 56px 56px;
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 960px) {
  .house-grid,
  .pillar-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .approach-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-mark {
    opacity: 0.55;
    width: min(70vw, 360px);
    right: -8%;
    top: 28%;
    transform: none;
  }

  .hero-content {
    padding-top: 3.5rem;
  }
}

@media (max-width: 720px) {
  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem 1.25rem 1.25rem;
  }

  body.nav-open nav {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
