/* Queen Bee Alchemy — replica styles */

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

:root {
  --lavender: #cfc2cb;
  --gold: #ba8d61;
  --rose-gray: #b8acb4;
  --rose-brown: #b29584;
  --charcoal: #7c7474;
  --ink: #212121;
  --heading-font: "Instrument Sans", sans-serif;
  --body-font: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--ink);
  background: var(--lavender);
  line-height: 1.6;
}

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

.section {
  padding: 96px 24px;
}

.section-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

h1, h2, h3 {
  font-family: var(--heading-font);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 24px;
}

h2 {
  font-size: 48px;
}

h3.eyebrow {
  font-size: 16px;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 12px;
}

h3.subheading {
  font-size: 32px;
}

p {
  margin: 0 0 16px;
  font-size: 18px;
}

.btn {
  display: inline-block;
  background: var(--rose-gray);
  color: #000;
  font-family: var(--body-font);
  font-weight: 500;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn.dark {
  background: var(--charcoal);
  color: #fff;
}

.btn:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

/* Sticky nav */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 32px;
  background: rgba(207, 194, 203, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(33, 33, 33, 0.08);
}

.nav-logo {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 20px;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.nav-links a:hover {
  text-decoration: underline;
}

.nav-cta {
  padding: 10px 22px;
  font-size: 14px;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.hero-left {
  background: var(--lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.hero-left img {
  max-width: 420px;
  width: 100%;
}

.hero-right {
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px;
}

.hero-right h1 {
  font-size: 48px;
  line-height: 1.15;
  max-width: 560px;
}

.hero-right p.lede {
  font-size: 18px;
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-right p.script {
  font-style: italic;
  font-size: 18px;
  margin-bottom: 20px;
}

/* Alternating section backgrounds */
.bg-lavender { background: var(--lavender); }
/* Text stays --ink (dark) on gold/rose backgrounds — white text on these
   mid-tone colors fails WCAG AA contrast for body copy. */
.bg-gold { background: var(--gold); }
.bg-rose { background: var(--rose-brown); }
.bg-charcoal { background: var(--charcoal); color: #fff; }
.bg-charcoal h2, .bg-charcoal h3 { color: #fff; }

.values-list, .expect-list, .bring-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  text-align: left;
  display: inline-block;
}

.values-list li, .expect-list li, .bring-list li {
  font-size: 18px;
  margin-bottom: 10px;
}

/* About section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.about-grid img {
  border-radius: 12px;
}

.about-grid .section-inner {
  text-align: left;
  max-width: 100%;
  margin: 0;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 48px auto 0;
}

.service-card {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 16px;
  min-height: 72px;
}

/* FAQ */
.faq-list {
  max-width: 700px;
  margin: 40px auto 0;
  text-align: left;
}

.faq-list details {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  padding: 18px 24px;
  margin-bottom: 12px;
}

.faq-list summary {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
}

.faq-list details p {
  margin: 12px 0 0;
  font-size: 16px;
}

.cta-repeat p {
  font-size: 20px;
  margin-bottom: 28px;
}

footer {
  text-align: center;
  padding: 32px 24px;
  background: var(--ink);
  color: #cfc2cb;
  font-size: 14px;
}

footer a {
  color: #cfc2cb;
}

footer .footer-links {
  margin-top: 8px;
  font-size: 13px;
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-left {
    padding-top: 60px;
  }
  h2 { font-size: 36px; }
  .hero-right h1 { font-size: 32px; }
  .about-grid, .services-grid {
    grid-template-columns: 1fr;
  }
  .site-nav {
    padding: 14px 20px;
  }
}
