/* ============================================
   BEEWISE GROUP — Shared Stylesheet
   Theme: Dark charcoal + Gold + Cream
   ============================================ */

:root {
  --gold: #c9a961;
  --gold-light: #e0c585;
  --gold-bright: #d4b874;
  --gold-deep: #a88947;
  --charcoal: #2a2826;
  --charcoal-deep: #1a1816;
  --charcoal-soft: #3a3835;
  --cream: #faf7f0;
  --cream-warm: #f4ede0;
  --ink: #1a1816;
  --text-soft: #5a5751;
  --line: rgba(201, 169, 97, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ============================================
   NAVIGATION
   ============================================ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 3rem;
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav.dark {
  background: rgba(26, 24, 22, 0.85);
  border-bottom: 1px solid rgba(201, 169, 97, 0.15);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  transition: opacity 0.3s ease;
}

nav.dark .logo { color: var(--cream); }

.logo:hover { opacity: 0.75; }

.logo img {
  height: 44px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text-main {
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.logo-text-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-top: 0.2rem;
}

.nav-links {
  display: flex;
  gap: 2.8rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s ease;
}

nav.dark .nav-links a { color: var(--cream); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a.active { color: var(--gold); }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn svg { stroke: currentColor; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2rem;
  border-radius: 0;
  font-family: inherit;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--charcoal-deep);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 97, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--charcoal-deep);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}

.btn-dark:hover {
  background: var(--gold);
  color: var(--charcoal-deep);
  border-color: var(--gold);
}

.btn .arrow { transition: transform 0.3s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================
   TYPOGRAPHY
   ============================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--ink);
}

h1 { font-size: clamp(3rem, 7vw, 6rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); }
h3 { font-size: 1.6rem; font-weight: 500; }
h4 { font-size: 1.25rem; font-weight: 500; }

em.gold {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 500;
}

.dark em.gold { color: var(--gold); }

/* ============================================
   GENERIC PAGE LAYOUT
   ============================================ */
section {
  padding: 7rem 3rem;
  position: relative;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 4rem;
  max-width: 720px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header.center .eyebrow {
  justify-content: center;
}

.section-text {
  font-size: 1.1rem;
  color: var(--text-soft);
  margin-top: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--charcoal-deep);
  color: rgba(250, 247, 240, 0.7);
  padding: 4rem 3rem 2rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201, 169, 97, 0.15);
}

.footer-brand .logo { color: var(--cream); }
.footer-brand p {
  font-size: 0.95rem;
  max-width: 360px;
  margin-top: 1rem;
  color: rgba(250, 247, 240, 0.6);
}

.footer-col h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.8rem; }

.footer-col a {
  color: rgba(250, 247, 240, 0.65);
  font-size: 0.93rem;
  transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(250, 247, 240, 0.45);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes drawLine {
  from { stroke-dashoffset: 1000; }
  to { stroke-dashoffset: 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 { transition-delay: 0.15s; }
.reveal.delay-2 { transition-delay: 0.3s; }
.reveal.delay-3 { transition-delay: 0.45s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-links.mobile-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--line);
  }
  nav.dark .nav-links.mobile-active { background: var(--charcoal-deep); }

  .mobile-menu-btn { display: block; color: var(--charcoal); }
  nav.dark .mobile-menu-btn { color: var(--cream); }

  section { padding: 5rem 1.5rem; }

  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
  footer { padding: 3rem 1.5rem 1.5rem; }

  .logo-text-main { font-size: 1.2rem; }
  .logo img { height: 38px; }
}
