@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Literata:ital,opsz,wght@0,7..72,400;0,7..72,600;0,7..72,700;1,7..72,400&display=swap');

:root {
  --bz-olive: #5C6B3A;
  --bz-olive-dark: #4A5630;
  --bz-gold: #D4A84B;
  --bz-gold-dark: #B8923A;
  --bz-linen: #F4EFE6;
  --bz-charcoal: #2A2A24;
  --bz-white: #FFFFFF;
  --bz-gray: #6B665E;
  --bz-gray-light: #E5DFD4;
  --bz-font-heading: 'Literata', serif;
  --bz-font-body: 'Karla', sans-serif;
  --bz-radius: 12px;
  --bz-radius-lg: 20px;
  --bz-shadow: 0 4px 24px rgba(42, 42, 36, 0.08);
  --bz-shadow-lg: 0 8px 40px rgba(42, 42, 36, 0.12);
  --bz-transition: 0.3s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--bz-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--bz-charcoal);
  background: var(--bz-linen);
}

body.bz-cookie-active {
  padding-top: 56px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--bz-olive);
  text-decoration: none;
  transition: color var(--bz-transition);
}

a:hover {
  color: var(--bz-olive-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--bz-font-heading);
  font-weight: 700;
  line-height: 1.25;
}

.bz-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Cookie — top strip */
.bz-cookie {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--bz-charcoal);
  color: var(--bz-linen);
  padding: 12px 24px;
  z-index: 1100;
  display: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.bz-cookie.bz-cookie--show {
  display: block;
}

.bz-cookie__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.bz-cookie__text {
  flex: 1;
  font-size: 0.85rem;
  line-height: 1.5;
}

.bz-cookie__text a {
  color: var(--bz-gold);
  text-decoration: underline;
}

.bz-cookie__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.bz-cookie__btn {
  padding: 8px 20px;
  border: none;
  border-radius: 50px;
  font-family: var(--bz-font-body);
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all var(--bz-transition);
}

.bz-cookie__btn--accept {
  background: var(--bz-gold);
  color: var(--bz-charcoal);
}

.bz-cookie__btn--accept:hover {
  background: var(--bz-gold-dark);
}

.bz-cookie__btn--decline {
  background: transparent;
  color: var(--bz-linen);
  border: 1px solid rgba(244, 239, 230, 0.3);
}

.bz-cookie__btn--decline:hover {
  border-color: var(--bz-linen);
}

/* Header */
.bz-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bz-white);
  box-shadow: var(--bz-shadow);
}

body.bz-cookie-active .bz-header {
  top: 56px;
}

.bz-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.bz-logo {
  font-family: var(--bz-font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--bz-charcoal);
}

.bz-logo span {
  color: var(--bz-olive);
}

.bz-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.bz-nav a {
  font-weight: 500;
  color: var(--bz-charcoal);
  font-size: 0.95rem;
}

.bz-nav a:hover,
.bz-nav a.bz-nav--active {
  color: var(--bz-olive);
}

.bz-burger {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--bz-charcoal);
  padding: 4px;
}

/* Split-screen Hero */
.bz-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.bz-hero__story {
  background: var(--bz-olive);
  color: var(--bz-linen);
  display: flex;
  align-items: center;
  padding: 60px 48px;
}

.bz-hero__story-inner {
  max-width: 480px;
}

.bz-hero__badge {
  display: inline-block;
  background: var(--bz-gold);
  color: var(--bz-charcoal);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bz-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
  color: var(--bz-linen);
}

.bz-hero h1 em {
  color: var(--bz-gold);
  font-style: normal;
}

.bz-hero__text {
  font-size: 1.05rem;
  color: rgba(244, 239, 230, 0.9);
  margin-bottom: 28px;
}

.bz-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.bz-hero__grove {
  position: relative;
  overflow: hidden;
}

.bz-hero__grove img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 560px;
}

.bz-hero__grove-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(92, 107, 58, 0.35) 100%);
}

/* Buttons */
.bz-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--bz-font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--bz-transition);
  text-decoration: none;
}

.bz-btn--primary {
  background: var(--bz-gold);
  color: var(--bz-charcoal);
}

.bz-btn--primary:hover {
  background: var(--bz-gold-dark);
  color: var(--bz-charcoal);
  transform: translateY(-2px);
  box-shadow: var(--bz-shadow-lg);
}

.bz-btn--secondary {
  background: var(--bz-olive-dark);
  color: var(--bz-linen);
}

.bz-btn--secondary:hover {
  background: var(--bz-charcoal);
  color: var(--bz-linen);
  transform: translateY(-2px);
}

.bz-btn--outline {
  background: transparent;
  color: var(--bz-linen);
  border: 2px solid var(--bz-linen);
}

.bz-btn--outline:hover {
  background: var(--bz-linen);
  color: var(--bz-olive);
}

/* Sections */
.bz-section {
  padding: 80px 0;
}

.bz-section--alt {
  background: var(--bz-white);
}

.bz-section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.bz-section__label {
  display: inline-block;
  color: var(--bz-olive);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.bz-section__header h2 {
  font-size: 2.1rem;
  margin-bottom: 16px;
  color: var(--bz-charcoal);
}

.bz-section__header p {
  color: var(--bz-gray);
  font-size: 1.05rem;
}

/* Features */
.bz-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.bz-feature {
  background: var(--bz-white);
  padding: 36px 28px;
  border-radius: var(--bz-radius-lg);
  box-shadow: var(--bz-shadow);
  text-align: center;
  transition: transform var(--bz-transition);
  border-top: 4px solid var(--bz-gold);
}

.bz-feature:hover {
  transform: translateY(-4px);
}

.bz-feature__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--bz-olive), var(--bz-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
}

.bz-feature h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.bz-feature p {
  color: var(--bz-gray);
  font-size: 0.95rem;
}

/* Product Cards */
.bz-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.bz-product-card {
  background: var(--bz-white);
  border-radius: var(--bz-radius-lg);
  overflow: hidden;
  box-shadow: var(--bz-shadow);
  transition: transform var(--bz-transition);
}

.bz-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--bz-shadow-lg);
}

.bz-product-card__img {
  height: 220px;
  overflow: hidden;
}

.bz-product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bz-product-card:hover .bz-product-card__img img {
  transform: scale(1.05);
}

.bz-product-card__body {
  padding: 24px;
}

.bz-product-card__tag {
  display: inline-block;
  background: var(--bz-linen);
  color: var(--bz-olive);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.bz-product-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.bz-product-card p {
  color: var(--bz-gray);
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.bz-product-card__price {
  font-family: var(--bz-font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bz-olive);
}

/* Garden Gallery */
.bz-garden-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bz-garden-card {
  border-radius: var(--bz-radius-lg);
  overflow: hidden;
  box-shadow: var(--bz-shadow);
  background: var(--bz-white);
}

.bz-garden-card__img {
  height: 240px;
  overflow: hidden;
}

.bz-garden-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bz-garden-card__body {
  padding: 22px;
}

.bz-garden-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.bz-garden-card p {
  color: var(--bz-gray);
  font-size: 0.9rem;
}

/* Stats */
.bz-stats {
  background: var(--bz-charcoal);
  padding: 60px 0;
}

.bz-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.bz-stat__num {
  font-family: var(--bz-font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--bz-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.bz-stat__label {
  color: rgba(244, 239, 230, 0.8);
  font-size: 0.95rem;
}

/* CTA */
.bz-cta {
  position: relative;
  border-radius: var(--bz-radius-lg);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
}

.bz-cta__bg {
  position: absolute;
  inset: 0;
}

.bz-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bz-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(42, 42, 36, 0.92) 0%, rgba(92, 107, 58, 0.55) 100%);
}

.bz-cta__content {
  position: relative;
  z-index: 2;
  padding: 60px;
  max-width: 560px;
}

.bz-cta__content h2 {
  font-size: 2rem;
  color: var(--bz-linen);
  margin-bottom: 16px;
}

.bz-cta__content p {
  color: rgba(244, 239, 230, 0.85);
  margin-bottom: 28px;
}

/* Page Hero */
.bz-page-hero {
  background: linear-gradient(135deg, var(--bz-olive) 0%, var(--bz-olive-dark) 100%);
  padding: 60px 0;
  text-align: center;
}

.bz-page-hero h1 {
  font-size: 2.3rem;
  color: var(--bz-linen);
  margin-bottom: 12px;
}

.bz-page-hero p {
  color: rgba(244, 239, 230, 0.9);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* About */
.bz-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.bz-about-grid img {
  border-radius: var(--bz-radius-lg);
  box-shadow: var(--bz-shadow-lg);
}

.bz-about-grid h2 {
  font-size: 1.75rem;
  margin-bottom: 20px;
}

.bz-about-grid p {
  color: var(--bz-gray);
  margin-bottom: 16px;
}

.bz-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.bz-value {
  padding: 18px;
  background: var(--bz-linen);
  border-radius: var(--bz-radius);
  border-left: 4px solid var(--bz-gold);
}

.bz-value h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.bz-value p {
  font-size: 0.9rem;
  color: var(--bz-gray);
  margin: 0;
}

/* Timeline / Process */
.bz-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.bz-step {
  text-align: center;
}

.bz-step__num {
  width: 52px;
  height: 52px;
  background: var(--bz-olive);
  color: var(--bz-linen);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--bz-font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 18px;
}

.bz-step h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.bz-step p {
  color: var(--bz-gray);
  font-size: 0.95rem;
}

/* Contact */
.bz-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.bz-form {
  background: var(--bz-white);
  padding: 36px;
  border-radius: var(--bz-radius-lg);
  box-shadow: var(--bz-shadow);
}

.bz-form h2 {
  font-size: 1.45rem;
  margin-bottom: 24px;
}

.bz-form__group {
  margin-bottom: 18px;
}

.bz-form__group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.bz-form__group input,
.bz-form__group textarea,
.bz-form__group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--bz-gray-light);
  border-radius: var(--bz-radius);
  font-family: var(--bz-font-body);
  font-size: 1rem;
  background: var(--bz-linen);
  transition: border-color var(--bz-transition);
}

.bz-form__group input:focus,
.bz-form__group textarea:focus,
.bz-form__group select:focus {
  outline: none;
  border-color: var(--bz-olive);
}

.bz-form__group textarea {
  min-height: 140px;
  resize: vertical;
}

.bz-contact-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.bz-contact-card {
  background: var(--bz-white);
  padding: 26px;
  border-radius: var(--bz-radius-lg);
  box-shadow: var(--bz-shadow);
}

.bz-contact-card__icon {
  width: 46px;
  height: 46px;
  background: var(--bz-olive);
  color: var(--bz-linen);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.bz-contact-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.bz-contact-card p,
.bz-contact-card a {
  color: var(--bz-gray);
  font-size: 0.95rem;
}

.bz-hours {
  list-style: none;
}

.bz-hours li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--bz-gray-light);
  font-size: 0.95rem;
}

.bz-hours li:last-child {
  border-bottom: none;
}

/* Privacy */
.bz-privacy {
  max-width: 800px;
  margin: 0 auto;
}

.bz-privacy h2 {
  font-size: 1.45rem;
  margin: 36px 0 16px;
  color: var(--bz-charcoal);
}

.bz-privacy h3 {
  font-size: 1.1rem;
  margin: 24px 0 12px;
}

.bz-privacy p {
  color: var(--bz-gray);
  margin-bottom: 16px;
}

.bz-privacy ul {
  margin: 0 0 16px 24px;
  color: var(--bz-gray);
}

.bz-privacy ul li {
  margin-bottom: 8px;
}

.bz-privacy__updated {
  background: var(--bz-white);
  padding: 16px 24px;
  border-radius: var(--bz-radius);
  border-left: 4px solid var(--bz-gold);
  margin-bottom: 32px;
  font-size: 0.9rem;
  color: var(--bz-gray);
}

/* Footer */
.bz-footer {
  background: var(--bz-charcoal);
  color: rgba(244, 239, 230, 0.8);
  padding: 60px 0 0;
}

.bz-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 40px;
}

.bz-footer__brand {
  font-family: var(--bz-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bz-linen);
  margin-bottom: 16px;
}

.bz-footer__brand span {
  color: var(--bz-gold);
}

.bz-footer p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.bz-footer h4 {
  font-size: 1rem;
  color: var(--bz-linen);
  margin-bottom: 18px;
}

.bz-footer__links {
  list-style: none;
}

.bz-footer__links li {
  margin-bottom: 10px;
}

.bz-footer__links a {
  color: rgba(244, 239, 230, 0.7);
  font-size: 0.9rem;
}

.bz-footer__links a:hover {
  color: var(--bz-gold);
}

.bz-footer__bottom {
  border-top: 1px solid rgba(244, 239, 230, 0.1);
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(244, 239, 230, 0.5);
}

/* Responsive 900px */
@media (max-width: 900px) {
  .bz-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bz-white);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    box-shadow: var(--bz-shadow);
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--bz-transition);
    pointer-events: none;
  }

  body.bz-cookie-active .bz-nav {
    top: 128px;
  }

  .bz-nav.bz-nav--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .bz-burger {
    display: block;
  }

  .bz-hero {
    grid-template-columns: 1fr;
  }

  .bz-hero__story {
    padding: 48px 24px;
    order: 2;
  }

  .bz-hero__grove {
    order: 1;
    min-height: 320px;
  }

  .bz-hero__grove img {
    min-height: 320px;
  }

  .bz-hero h1 {
    font-size: 2rem;
  }

  .bz-features,
  .bz-steps,
  .bz-product-grid,
  .bz-garden-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bz-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bz-about-grid,
  .bz-contact-grid {
    grid-template-columns: 1fr;
  }

  .bz-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive 560px */
@media (max-width: 560px) {
  .bz-container {
    padding: 0 16px;
  }

  .bz-hero h1 {
    font-size: 1.75rem;
  }

  .bz-hero__story {
    padding: 40px 20px;
  }

  .bz-section {
    padding: 56px 0;
  }

  .bz-section__header h2 {
    font-size: 1.65rem;
  }

  .bz-features,
  .bz-steps,
  .bz-product-grid,
  .bz-garden-grid,
  .bz-stats__grid,
  .bz-footer__grid {
    grid-template-columns: 1fr;
  }

  .bz-values {
    grid-template-columns: 1fr;
  }

  .bz-cta__content {
    padding: 36px 24px;
  }

  .bz-cta__content h2 {
    font-size: 1.45rem;
  }

  .bz-form {
    padding: 24px;
  }

  .bz-page-hero h1 {
    font-size: 1.75rem;
  }

  .bz-cookie__inner {
    flex-direction: column;
    text-align: center;
  }

  .bz-hero__actions {
    flex-direction: column;
  }

  .bz-btn {
    width: 100%;
    justify-content: center;
  }
}
