/* Bumblebee Jewelry — Custom Boutique Redesign
   Palette: Honey Amber, Deep Charcoal, Soft Silk Cream, Emerald Accent */
:root {
  --primary: #d97706;
  --primary-hover: #b45309;
  --accent: #047857;
  --bg-cream: #faf8f5;
  --bg-dark: #111827;
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --border-dark: #374151;
  --radius: 12px;
  --radius-sm: 6px;
  --maxw: 1000px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
  --shadow: 0 4px 20px rgba(31, 41, 55, 0.03);
  --shadow-lg: 0 15px 35px rgba(31, 41, 55, 0.07);
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg-cream);
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--bg-cream);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: clamp(70px, 10vw, 130px) 0;
}

.section--soft {
  background: #f4f1eb;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 0; /* Minimalist clean edge */
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn--gold {
  background: var(--primary);
  color: #fff;
}

.btn--gold:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover {
  background: #fff;
  color: var(--text-dark);
}

.btn--outline {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--text-dark);
}

.btn--outline:hover {
  background: var(--text-dark);
  color: #fff;
}

/* Site Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  height: 90px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 48px;
  width: auto;
  border-radius: 0;
}

.brand-text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.brand-text small {
  display: block;
  font-size: 0.65rem;
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 12px;
}

.nav-links a {
  padding: 8px 16px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-mobile-phone,
.nav-mobile-cta {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  width: 24px;
  background: var(--text-dark);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  color: #fff;
  padding: clamp(100px, 15vw, 200px) 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-inner {
  max-width: 650px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 500;
}

.hero p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
}

/* Alternate Split columns */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.split--reversed .reveal:nth-child(1) {
  order: 2;
}

.split--reversed .reveal:nth-child(2) {
  order: 1;
}

/* Minimal outline cards */
.grid {
  display: grid;
  gap: 40px;
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: transparent;
  border: 1px solid var(--border);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.card:hover {
  border-color: var(--primary);
  background: #fff;
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.card .more {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-top: 8px;
}

/* CTA Band */
.cta-band {
  background: var(--text-dark);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.cta-band h2 {
  color: #fff;
  font-weight: 400;
  margin-bottom: 16px;
}

.cta-band a {
  color: var(--primary);
  font-weight: 700;
}

.cta-band a:hover {
  text-decoration: underline;
}

/* Footer Section */
.site-footer {
  background: #111;
  color: #a3a3a3;
  padding: 80px 0 30px;
  font-size: 0.9rem;
  border-top: 1px solid #222;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-grid h4 {
  color: #fff;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-grid ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 14px;
}

.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-credit {
  font-size: 0.75rem;
  color: #525252;
}

.footer-credit a {
  color: var(--primary);
}

.footer-credit a:hover {
  text-decoration: underline;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .split--reversed .reveal:nth-child(1) {
    order: 1;
  }
  .split--reversed .reveal:nth-child(2) {
    order: 2;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .site-header {
    height: 80px;
  }
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-cream);
    border-bottom: 1px solid var(--border);
    padding: 20px;
    gap: 12px;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open a {
    display: block;
    width: 100%;
    padding: 10px 0;
  }
  .nav-links.open .nav-mobile-phone,
  .nav-links.open .nav-mobile-cta {
    display: block;
    width: 100%;
    list-style: none;
  }
  .nav-links.open .nav-mobile-phone {
    border-top: 1px solid var(--border);
    margin-top: 8px;
    padding-top: 12px;
  }
  .nav-links.open .nav-mobile-phone a {
    display: block;
    padding: 10px 0;
    font-weight: 700;
    color: var(--primary);
  }
  .nav-links.open .nav-mobile-cta {
    padding: 8px 0 4px;
    border-top: 1px solid var(--border);
    margin-top: 8px;
  }
  .nav-links.open .nav-mobile-cta .btn {
    display: inline-flex;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
}
