@font-face {
  font-family: 'AzoSans';
  src: url('https://beunbridled.ai/AzoSans-Light.woff2') format('woff2');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'AzoSans';
  src: url('https://beunbridled.ai/AzoSans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'AzoSans';
  src: url('https://beunbridled.ai/AzoSans-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

:root {
  --purple: #3f2a55;
  --purple-mid: #534066;
  --gold: #e1a463;
  --gold-deep: #c4893e;
  --copper: #8f644b;
  --ink: #2a2430;
  --muted: #6a6570;
  --line: #e4dfe8;
  --paper: #f6f3f0;
  --white: #ffffff;
  --shadow: 0 24px 50px -28px rgba(63, 42, 85, 0.22);
  --shadow-soft: 0 18px 40px -24px rgba(63, 42, 85, 0.16);
  --header-h: 72px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'AzoSans', system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 18px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.preview-bar {
  background: var(--gold);
  color: var(--purple);
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .45rem 1rem;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
}
.nav {
  max-width: 1180px;
  margin: 0 auto;
  min-height: var(--header-h);
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  line-height: 0;
}
.logo img {
  height: 44px;
  width: auto;
  max-width: min(240px, 58vw);
  object-fit: contain;
  object-position: left center;
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  flex: 0 0 44px;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--purple);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle:checked + .menu-toggle span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle:checked + .menu-toggle span:nth-child(2) { opacity: 0; }
.nav-toggle:checked + .menu-toggle span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.65rem;
  list-style: none;
  font-size: 14px;
  letter-spacing: .01em;
  margin-left: auto;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  padding: .35rem 0;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--purple);
  border-bottom-color: var(--gold);
}
.nav-cta { list-style: none; }
.nav-cta .btn {
  padding: .7rem 1.05rem;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 4px;
  padding: .95rem 1.5rem;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
  border: 0;
  cursor: pointer;
}
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-deep); }
.btn-ghost {
  border: 1px solid rgba(255,255,255,.7);
  color: var(--white);
  background: transparent;
}
.btn-ghost:hover { background: var(--white); color: var(--purple); }
.btn-outline {
  border: 1px solid var(--purple);
  color: var(--purple);
  background: transparent;
}
.btn-outline:hover { background: var(--purple); color: var(--white); }

.hero {
  background:
    linear-gradient(180deg, rgba(246,243,240,.4), rgba(246,243,240,1) 40%),
    var(--paper);
  padding: 7.2rem clamp(2.8rem, 7vw, 6.2rem) 6.2rem;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1.05fr);
  align-items: stretch;
  padding: 0;
  background: var(--paper);
  min-height: 640px;
}
.hero-split .hero-inner {
  max-width: none;
  margin: 0;
  padding: 6.4rem 3.5rem 5.4rem clamp(2.8rem, 7vw, 6.2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-split .hero-inner .lede { max-width: 540px; }
.hero-photo {
  background:
    linear-gradient(90deg, rgba(246,243,240,.18) 0%, rgba(63,42,85,.10) 38%, rgba(63,42,85,.06) 100%),
    url('storehouse-hero.jpg') center / cover no-repeat;
  min-height: 420px;
}
.photo-band {
  height: 340px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--line);
}
.photo-band-aisle { background-image: url('aisle-photo.jpg'); }
.photo-band-family { background-image: url('family-photo.jpg'); background-position: center 70%; }
.hero-split::after { display: none; }
.hero::after {
  content: "";
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 0;
  height: 1px;
  max-width: 1180px;
  margin: 0 auto;
  background: linear-gradient(90deg, var(--gold), transparent 70%);
}
.hero-inner { max-width: 820px; margin: 0 auto; }
.kicker {
  color: var(--copper);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 1.35rem;
}
.hero h1 {
  font-size: clamp(2.6rem, 6.4vw, 4.7rem);
  line-height: 1.04;
  letter-spacing: -1.8px;
  font-weight: 300;
  color: var(--purple);
  margin-bottom: 1.4rem;
  text-wrap: pretty;
}
.lede {
  font-size: 1.22rem;
  font-weight: 300;
  max-width: 640px;
  color: var(--muted);
  margin-bottom: 2.1rem;
}
.cta-row { display: flex; flex-wrap: wrap; gap: .85rem; }

.proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2.6rem;
  padding: 1.5rem 0 0;
  margin-top: 2.4rem;
  border-top: 1px solid rgba(63,42,85,.08);
}
.proof b {
  display: block;
  color: var(--purple);
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: -.02em;
}
.proof span {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

section { padding: 6.4rem 1.5rem; }
.wrap { max-width: 1100px; margin: 0 auto; }
.narrow { max-width: 720px; }
.center { text-align: center; }
.center .sub { margin-left: auto; margin-right: auto; }

.section-label {
  color: var(--copper);
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: .95rem;
}
h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.85rem);
  color: var(--purple);
  letter-spacing: -0.9px;
  line-height: 1.14;
  font-weight: 300;
  margin-bottom: 1.05rem;
  text-wrap: pretty;
}
.sub {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 680px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.paper { background: var(--paper); }
.ink {
  background: var(--purple);
  color: var(--white);
}
.ink h2, .ink .section-label { color: var(--gold); }
.ink .sub, .ink p { color: rgba(255,255,255,.82); }
.ink .muted { color: rgba(255,255,255,.72); }

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 4.5rem;
  align-items: start;
}
.split-center { align-items: center; }

.problem-list { list-style: none; }
.problem-list li {
  padding: 1.5rem 0 1.5rem 1.25rem;
  border-top: 1px solid var(--line);
  border-left: 2px solid transparent;
}
.problem-list li:first-child { border-left-color: var(--gold); }
.problem-list li:last-child { border-bottom: 1px solid var(--line); }
.problem-list h3 {
  color: var(--purple);
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: .4rem;
}
.problem-list p { color: var(--muted); font-size: 1rem; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.8rem;
  counter-reset: step;
}
.step h3 {
  color: var(--purple);
  font-size: 1.2rem;
  margin: .75rem 0 .45rem;
  font-weight: 400;
}
.step p { color: var(--muted); }
.step .num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}

.grid-2, .grid-3 {
  display: grid;
  gap: 1.35rem;
}
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 1.85rem 1.7rem 1.75rem;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; right: 0;
  height: 2px;
  background: transparent;
}
.card.lead::before { background: var(--gold); }
.paper .card { background: var(--white); }
.ink .card {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.1);
  box-shadow: none;
}
.ink .card::before { display: none; }
.card h3 { color: var(--purple); font-size: 1.18rem; margin-bottom: .55rem; font-weight: 700; }
.ink .card h3 { color: var(--gold); }
.card p { color: var(--muted); font-size: 1rem; }
.ink .card p { color: rgba(255,255,255,.8); }
a.card { text-decoration: none; display: block; transition: border-color .2s, transform .2s; }
a.card:hover { border-color: var(--gold); transform: translateY(-2px); }
.card .url { color: var(--gold); font-size: 12px; margin-top: 1rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.quote {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--purple);
  line-height: 1.4;
  margin-bottom: 1rem;
}
.quote cite {
  display: block;
  font-style: normal;
  font-size: .88rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.model {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 2.6rem;
  border-top: 1px solid rgba(255,255,255,.16);
}
.model-item { padding: 2.2rem 1.6rem 0 0; }
.model-item + .model-item {
  padding-left: 1.8rem;
  border-left: 1px solid rgba(255,255,255,.16);
}
.model-item b {
  display: block;
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  color: var(--gold);
  font-weight: 300;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: .75rem;
}
.model-item h3 { color: var(--white); margin-bottom: .4rem; font-weight: 700; }
.model-item p { color: rgba(255,255,255,.78); font-size: 1rem; }

.doors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
  margin-top: 2rem;
}
.door {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.9rem 1.7rem 1.55rem;
  min-height: 230px;
  position: relative;
  box-shadow: var(--shadow-soft);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.door::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: #061b31;
}
.door:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.door-kicker {
  color: var(--copper);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: .85rem;
}
.door h3 {
  color: var(--purple);
  font-size: 1.32rem;
  font-weight: 700;
  margin-bottom: .55rem;
  line-height: 1.25;
}
.door p {
  color: var(--muted);
  font-size: 1rem;
  flex: 1;
}
.door-go {
  margin-top: 1.3rem;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.prose p { color: var(--muted); margin-bottom: 1.2rem; }
.prose h2 { margin-top: 2.3rem; }
.prose h3 { color: var(--purple); font-size: 1.15rem; margin: 1.8rem 0 .45rem; font-weight: 700; }
.prose ul { margin: 0 0 1.2rem 1.15rem; color: var(--muted); }
.prose li { margin: .45rem 0; }
.prose a { color: var(--purple); }
.callout {
  border-left: 2px solid var(--gold);
  padding: .15rem 0 .15rem 1.25rem;
  margin: 1.9rem 0;
  color: var(--ink);
}
.callout strong { color: var(--purple); }

.faq { max-width: 760px; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1.15rem 0;
}
.faq summary { cursor: pointer; font-weight: 700; color: var(--purple); list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-weight: 300;
  font-size: 1.3rem;
  line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); margin-top: .6rem; }

.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.team article {
  padding: 0 0 1.45rem;
  border: 1px solid var(--line);
  background: var(--white);
}
.team article img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center top;
  margin: 0 0 1.15rem;
  border-radius: 0;
}
.team article h3,
.team .role,
.team p { padding-left: 1.25rem; padding-right: 1.25rem; }
.team h3 { color: var(--purple); font-size: 1.18rem; margin-bottom: .2rem; font-weight: 400; }
.team .role {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 700;
  margin-bottom: .55rem;
}
.team p { color: var(--muted); font-size: 1rem; }

footer {
  background: var(--purple);
  color: rgba(255,255,255,.8);
  padding: 4rem 1.5rem 2.2rem;
  font-size: 15px;
}
.foot {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.4rem;
}
.foot h4 {
  color: var(--gold);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 1rem;
}
.foot a { color: #fff; text-decoration: none; display: block; margin: .38rem 0; }
.foot a:hover { color: var(--gold); }
.legal {
  max-width: 1100px;
  margin: 2.4rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 13px;
  opacity: .68;
  line-height: 1.75;
}

@media (max-width: 1040px) {
  .menu-toggle { display: flex; }
  .nav { padding: 0 1rem; min-height: 64px; }
  .logo img { height: 36px; max-width: calc(100vw - 92px); }
  .nav-links {
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: .6rem 0 1.1rem;
    gap: 0;
    margin-left: 0;
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: .95rem 1.25rem;
    border-bottom: 0;
    font-size: 16px;
  }
  .nav-cta { padding: .5rem 1.25rem 0; }
  .nav-cta .btn { width: 100%; text-align: center; }
  .nav-toggle:checked ~ .nav-links { display: flex; }
}

@media (max-width: 900px) {
  .hero { padding: 4.4rem 1.2rem 3.8rem; }
  .hero-split {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-split .hero-inner { padding: 3.6rem 1.5rem 2.4rem; }
  .hero-photo { min-height: 280px; order: -1; }
  section { padding: 3.8rem 1.2rem; }
  .split, .grid-2, .grid-3, .steps, .model, .team, .foot, .doors {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
  .model-item, .model-item + .model-item {
    padding: 1.5rem 0;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.18);
  }
  .team article, .team article:nth-child(even) { padding-left: 0; padding-right: 0; }
  .team article img { height: 300px; }
  .hero::after { left: 1.2rem; right: 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
