/* O-Bizz Bishop — Home office category theme */
:root {
  --bp-bg: #fafaf5;
  --bp-bg-alt: #f2efe8;
  --bp-charcoal: #2c2c2c;
  --bp-charcoal-soft: #363636;
  --bp-amber: #f5a623;
  --bp-amber-soft: #f6ba4c;
  --bp-text: #2d2a26;
  --bp-muted: #4f4b42;
  --bp-border: #e6dcc9;
  --bp-card: #ffffff;
  --bp-font-head: "Merriweather", Georgia, serif;
  --bp-font-body: "Inter", "Segoe UI", sans-serif;
  --bp-radius: 16px;
  --bp-radius-lg: 22px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--bp-font-body);
  color: var(--bp-text);
  background: var(--bp-bg);
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 250, 245, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--bp-border);
}

.site-nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--bp-font-head);
  font-weight: 700;
  white-space: nowrap;
}
.brand__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 25%,
    #fff 0 38%,
    var(--bp-amber) 39% 100%
  );
}
.brand__name {
  font-size: 1.2rem;
}

.nav-toggle {
  border: none;
  background: transparent;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--bp-charcoal);
  margin: 4px auto;
  border-radius: 2px;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  margin: 0;
}
.nav-list a {
  display: inline-flex;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.94rem;
}
.nav-list a:hover,
.nav-list a:focus-visible {
  background: #fff;
  color: var(--bp-charcoal);
}
.nav-list__cta {
  background: linear-gradient(135deg, var(--bp-amber), #dfa83b);
  color: #121212;
  border-color: var(--bp-amber);
}

.hero {
  padding: 74px 0;
  background: linear-gradient(145deg, #f6f2e9, #fafaf5 60%);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
}
.hero__media img {
  width: 100%;
  border-radius: var(--bp-radius-lg);
  box-shadow: 0 20px 45px rgba(28, 24, 14, 0.15);
}

.u-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(245, 166, 35, 0.35);
  background: rgba(245, 166, 35, 0.09);
  color: #8f590f;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero h1 {
  font-family: var(--bp-font-head);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  margin: 12px 0;
  color: var(--bp-charcoal);
}

.hero p {
  font-size: 1.08rem;
  color: var(--bp-muted);
  margin-bottom: 26px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 2px solid var(--bp-charcoal);
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
  filter: brightness(0.97);
}
.btn--primary {
  background: var(--bp-charcoal);
  color: #fff;
  border-color: var(--bp-charcoal);
}
.btn--ghost {
  color: var(--bp-charcoal);
  background: transparent;
}

.hero__trust {
  margin: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
}
.hero__trust li {
  border: 1px dashed #d6c29e;
  padding: 8px 12px;
  border-radius: 10px;
  background: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

.section {
  padding: 60px 0;
}
.section--alt {
  background: var(--bp-bg-alt);
}
.section__kicker {
  color: #8c5d23;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.section h2 {
  margin: 8px 0 12px;
  font-family: var(--bp-font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.18;
}
.section h1 {
  font-family: var(--bp-font-head);
  font-size: clamp(1.8rem, 3.3vw, 2.7rem);
  line-height: 1.12;
  margin: 8px 0;
}
.section p {
  color: var(--bp-muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.card,
.product {
  background: var(--bp-card);
  border: 1px solid #ddd0b7;
  border-radius: var(--bp-radius);
  padding: 16px;
  box-shadow: 0 12px 28px rgba(17, 14, 8, 0.08);
}
.card h3,
.product h3 {
  margin: 12px 0 8px;
  font-family: var(--bp-font-head);
}
.card p,
.product p {
  margin: 0;
  color: var(--bp-muted);
}
.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(245, 166, 35, 0.17);
  color: #9f6819;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.product img {
  border-radius: 12px;
  aspect-ratio: 1216 / 832;
  object-fit: cover;
}
.rating {
  color: #f2a000;
  letter-spacing: 2px;
  display: inline-block;
  margin-top: 10px;
}
.price {
  margin: 10px 0 0;
  font-weight: 700;
  color: #2d2a26;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: stretch;
}
.split img {
  border-radius: var(--bp-radius-lg);
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin-top: 10px;
}
.feature-list li {
  background: #fff;
  border: 1px dashed #d4bc94;
  border-radius: 10px;
  padding: 8px 12px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.badge {
  background: #fff;
  border: 1px solid #d7c7a9;
  color: #6b5425;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 600;
}

.form-wrap {
  background: #fff;
  border: 1px solid var(--bp-border);
  border-radius: 16px;
  padding: 16px;
}
.field {
  margin-bottom: 12px;
}
.field label {
  display: inline-block;
  margin-bottom: 4px;
  font-weight: 600;
}
.field input,
.field textarea {
  width: 100%;
  border: 1px solid #cbb88f;
  border-radius: 10px;
  padding: 10px 11px;
  font: inherit;
  background: #fff;
}
.field textarea {
  min-height: 120px;
  resize: vertical;
}
.notice {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 10px;
  display: none;
}
.notice.is-ok {
  display: block;
  color: #1b4f1b;
  background: #e6f3e6;
  border: 1px solid #b7d9b7;
}

.faq {
  margin-top: 12px;
}
.faq-item {
  border: 1px solid #dcc9a8;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px;
  background: #fff;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  padding: 0;
}
.faq-a {
  margin-top: 8px;
  color: var(--bp-muted);
  display: none;
}
.faq-item.is-open .faq-a {
  display: block;
}

.foot {
  border-top: 1px solid #dfd0b8;
  background: #f2eddf;
  padding: 36px 0 20px;
}
.foot .container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 18px;
}
.foot h4 {
  margin: 0 0 8px;
}
.foot ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.foot a {
  text-decoration: none;
}
.copy {
  border-top: 1px solid #e0d1b8;
  padding: 18px 0 0;
  color: #66593c;
}

@media (max-width: 960px) {
  .hero__grid,
  .grid,
  .products-grid,
  .split,
  .foot .container {
    grid-template-columns: 1fr;
  }
  .nav-toggle {
    display: block;
  }
  .nav-list {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fafaf5;
    border-bottom: 1px solid #e2d6bb;
    padding: 10px 14px;
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }
  .nav-list.is-open {
    display: flex;
  }
  .nav-list li {
    width: 100%;
  }
  .nav-list a {
    width: 100%;
  }
}
