* { box-sizing: border-box; }

:root {
  --bg: #f3eee3;
  --bg-warm: #efe7d8;
  --bg-light: #faf7f0;
  --text: #2d261f;
  --muted: #6f6558;
  --card: rgba(58, 47, 37, 0.18);
  --card-border: rgba(255,255,255,0.16);
  --line: #ddd2bf;
  --accent: #d6b06a;
  --white: #fffdf8;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: var(--bg);
}

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

.page-shell {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/bee-hero.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  opacity: 0.92;
  filter: blur(4px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28,23,18,0.50) 0%, rgba(28,23,18,0.34) 45%, rgba(28,23,18,0.10) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  max-width: 1000px;
  margin: 0 auto;
  padding: 24px 24px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.logo-card,
.intro-card {
  width: min(100%, 760px);
  border-radius: 32px;
}

.intro-card {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.logo-card {
  padding: 10px 14px;
  display: flex;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
}

.intro-card {
  padding: 26px 30px 24px;
  border: 1px solid var(--card-border);
  background: var(--card);
  box-shadow: 0 20px 80px rgba(0,0,0,0.22);
}

.hero-logo {
  width: min(100%, 400px);
  height: auto;
  object-fit: contain;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,248,236,0.84);
}

.section-kicker {
  color: #8b7c67;
}

h1, h2, h3 {
  margin: 0;
  line-height: 0.95;
}

h1 {
  font-size: clamp(44px, 6vw, 72px);
  color: var(--white);
  max-width: 9ch;
}

.intro-copy {
  margin: 14px 0 0;
  max-width: 760px;
  color: rgba(255,248,236,0.9);
  font-size: 1.15rem;
  line-height: 1.55;
  font-family: Arial, Helvetica, sans-serif;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 18px;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

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

.button-primary {
  color: #1d1711;
  background: var(--accent);
}

.button-secondary {
  color: var(--white);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.feature-card {
  padding: 20px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
}

.feature-card h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-card p {
  margin: 0;
  color: rgba(255,248,236,0.88);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

.section {
  padding: 82px 24px;
}

.section-warm {
  background: var(--bg-warm);
}

.section-light {
  background: var(--bg-light);
  border-top: 1px solid var(--line);
}

.content-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
}

.section-head h2,
.about-grid h2 {
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.02;
  margin-bottom: 18px;
}

.section-head p,
.about-grid p,
.contact-card p,
.preview-copy p {
  margin: 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.75;
  font-size: 1.05rem;
}

.about-grid p + p {
  margin-top: 18px;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.preview-card {
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(28,25,23,0.08);
}

.preview-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.preview-copy {
  padding: 22px;
}

.preview-copy h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 36px;
  align-items: start;
}

.contact-card {
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(28,25,23,0.06);
}

.email-link {
  display: inline-block;
  margin: 12px 0 14px;
  color: var(--text);
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-decoration: underline;
  text-decoration-color: #cdbda4;
  text-underline-offset: 4px;
}

@media (max-width: 900px) {
  .hero-bg {
    background-position: center 30%;
    transform: scale(1.08);
    opacity: 1;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(28,23,18,0.36) 0%, rgba(28,23,18,0.24) 45%, rgba(28,23,18,0.08) 100%);
  }

  .feature-grid,
  .preview-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 18px;
    padding-bottom: 28px;
    gap: 10px;
  }

  .intro-card {
    padding: 22px 18px 20px;
  }

  .logo-card {
    padding: 6px 10px;
  }

  .hero-logo {
    width: min(100%, 220px);
  }

  .intro-copy {
    font-size: 1rem;
  }

  .section {
    padding: 64px 20px;
  }
}
