@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Playfair+Display:wght@500;600;700&display=swap');

:root {
  --ink: #25231f;
  --muted: #6d675d;
  --cream: #fbf7ee;
  --paper: #fffdf8;
  --gold: #d8a928;
  --gold-light: #f3df9a;
  --line: #e7dfcf;
  --green: #53685a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.65;
}
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px clamp(20px, 5vw, 70px);
  background: rgba(251,247,238,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -.02em;
}
.brand em { font-family: "Playfair Display", serif; font-weight: 600; }
.bee { font-size: 1.45rem; }
nav { display: flex; gap: clamp(14px, 3vw, 32px); }
nav a { text-decoration: none; font-size: .92rem; color: var(--muted); }
nav a:hover { color: var(--ink); }

.hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 40px;
  padding: 80px clamp(20px, 8vw, 120px);
  background:
    radial-gradient(circle at 78% 48%, rgba(243,223,154,.75), transparent 25%),
    var(--cream);
}
.eyebrow {
  margin: 0 0 10px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--green);
}
h1, h2, h3 { margin-top: 0; line-height: 1.08; }
h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-family: "Playfair Display", serif;
  font-size: clamp(3.4rem, 8vw, 7rem);
  letter-spacing: -.045em;
}
h1 span { color: var(--gold); }
h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  letter-spacing: -.035em;
}
.intro { max-width: 560px; color: var(--muted); font-size: 1.15rem; }
.buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  display: inline-block;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
}
.primary { background: var(--ink); color: white; }
.secondary { border: 1px solid var(--ink); }

.honeycomb {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}
.hex {
  position: absolute;
  width: 145px;
  height: 168px;
  display: grid;
  place-items: center;
  clip-path: polygon(25% 6.7%,75% 6.7%,100% 50%,75% 93.3%,25% 93.3%,0 50%);
  background: var(--gold-light);
  font-family: "Playfair Display", serif;
}
.hex::after {
  content: "";
  position: absolute;
  inset: 8px;
  clip-path: inherit;
  border: 1px solid rgba(37,35,31,.14);
}
.h1 { width: 175px; height: 202px; background: var(--gold); font-size: 4rem; z-index: 2; }
.h2 { transform: translate(145px,-82px); }
.h3 { transform: translate(-145px,-82px); }
.h4 { transform: translate(145px,82px); }
.h5 { transform: translate(-145px,82px); }
.h6 { transform: translate(0,-164px); }
.h7 { transform: translate(0,164px); }

.section { padding: 100px clamp(20px, 8vw, 120px); }
.section > h2 { max-width: 800px; }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 45px;
}
.card {
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
}
.card-icon { font-size: 2rem; margin-bottom: 22px; }
.card h3 { font-family: "Playfair Display", serif; font-size: 1.55rem; }
.card p, .story p, .bee-panel p, .contact p { color: var(--muted); }

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.story > div:last-child { max-width: 560px; font-size: 1.08rem; }

.bee-panel {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  gap: 45px;
  max-width: 900px;
  margin: auto;
  padding: 55px;
  border-radius: 28px;
  background: #eef0e7;
}
.large-bee { font-size: 6rem; text-align: center; }

.contact { text-align: center; }
.contact h2, .contact p { max-width: 760px; margin-left: auto; margin-right: auto; }
.contact .button { margin-top: 16px; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 70px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .82rem;
}

@media (max-width: 800px) {
  .site-header { position: static; align-items: flex-start; gap: 12px; }
  nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 60px; }
  .honeycomb { min-height: 330px; transform: scale(.75); margin: -30px 0; }
  .cards, .story { grid-template-columns: 1fr; }
  .section { padding-top: 75px; padding-bottom: 75px; }
  .bee-panel { grid-template-columns: 1fr; text-align: center; padding: 35px 25px; }
  footer { flex-direction: column; }
}
