/* =========================================
   ETERNALLY YOURS — Wedding Planners NJ
   Design: Refined Luxury Editorial
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* === CSS VARIABLES === */
:root {
  --ivory:      #FDFAF5;
  --gold:       #B89A5E;
  --gold-light: #D4B896;
  --gold-dark:  #8A6F3E;
  --blush:      #F0D5CC;
  --blush-deep: #D4A9A0;
  --charcoal:   #2A2A2A;
  --ash:        #6B6B6B;
  --mist:       #F7F3EE;
  --white:      #FFFFFF;
  --border:     rgba(184,154,94,0.25);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', sans-serif;

  --shadow-soft: 0 4px 24px rgba(42,42,42,0.07);
  --shadow-card: 0 8px 40px rgba(42,42,42,0.10);
  --transition:  all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius:      4px;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}
a:hover { color: var(--gold-dark); }

ul { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }

.serif-italic { font-family: var(--font-serif); font-style: italic; }
.text-gold  { color: var(--gold); }
.text-ash   { color: var(--ash); }
.text-center { text-align: center; }

/* === LAYOUT UTILITIES === */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* === ORNAMENT DIVIDER === */
.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.ornament::before, .ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.ornament span {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.2rem;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(138,111,62,0.35);
}

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-danger {
  background: #c0392b;
  color: var(--white);
  font-size: 0.72rem;
  padding: 0.5rem 1rem;
}
.btn-danger:hover { background: #a93226; color: var(--white); }

.btn-sm {
  padding: 0.55rem 1.3rem;
  font-size: 0.7rem;
}

/* === NAVIGATION === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(253,250,245,0.97);
  box-shadow: 0 2px 20px rgba(42,42,42,0.08);
  backdrop-filter: blur(12px);
}

.navbar.solid {
  background: rgba(253,250,245,0.97);
  box-shadow: 0 2px 20px rgba(42,42,42,0.08);
}

.nav-brand {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 300;
  color: var(--charcoal);
  letter-spacing: 0.03em;
}
.nav-brand em {
  color: var(--gold);
  font-style: italic;
}
.nav-brand.light-brand { color: var(--white); }
.navbar.scrolled .nav-brand,
.navbar.solid .nav-brand { color: var(--charcoal); }
.navbar.scrolled .nav-brand em,
.navbar.solid .nav-brand em { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.76rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 400;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--gold-light); }

.navbar.scrolled .nav-links a,
.navbar.solid .nav-links a { color: var(--ash); }
.navbar.scrolled .nav-links a:hover,
.navbar.solid .nav-links a:hover { color: var(--gold); }

.nav-cta .btn { padding: 0.65rem 1.6rem; font-size: 0.72rem; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 1.5px;
  width: 26px;
  background: var(--white);
  transition: var(--transition);
}
.navbar.scrolled .hamburger span,
.navbar.solid .hamburger span { background: var(--charcoal); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4.5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4.5px); }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2A2218 0%, #3D2E1A 40%, #4A3520 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(184,154,94,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(240,213,204,0.08) 0%, transparent 50%);
}

/* Decorative pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(184,154,94,0.15) 1px, transparent 0);
  background-size: 48px 48px;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: 0 2rem;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  display: block;
  animation: fadeUp 0.8s ease both;
}

.hero h1 {
  color: var(--white);
  font-weight: 300;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease 0.15s both;
}
.hero h1 em {
  display: block;
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.45s both;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
  animation: fadeUp 1s ease 0.8s both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
  animation: scrollPulse 2s ease infinite;
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  padding: 9rem 0 5rem;
  background: linear-gradient(135deg, #2A2218 0%, #3D2E1A 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(184,154,94,0.12) 1px, transparent 0);
  background-size: 48px 48px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 500px; margin: 0 auto; }

/* === CARDS === */
.card {
  background: var(--white);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(42,42,42,0.12);
}

.card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--blush), var(--blush-deep));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

/* === SERVICE CARDS === */
.service-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 24px 64px rgba(42,42,42,0.14); }

.service-card-header {
  padding: 2.5rem 2.5rem 0;
}
.service-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--blush), #e8c5bd);
  color: var(--gold-dark);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.service-card-body {
  padding: 1.5rem 2.5rem 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body p { flex: 1; }
.service-features {
  margin: 1.25rem 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-features li {
  font-size: 0.875rem;
  color: var(--ash);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.service-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.55rem;
  flex-shrink: 0;
}

/* === ABOUT SECTION === */
.about-preview { background: var(--mist); }

.about-visual {
  position: relative;
}
.about-img-frame {
  position: relative;
  background: linear-gradient(135deg, var(--blush) 0%, #e8c5bd 100%);
  border-radius: 8px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-img-frame::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 6px;
}
.about-img-placeholder {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: rgba(138,111,62,0.6);
  text-align: center;
}
.about-badge-float {
  position: absolute;
  bottom: -1rem; right: -1rem;
  background: var(--gold);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.about-badge-float .num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.about-badge-float .label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
}
.check-icon {
  width: 22px; height: 22px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* === CTA BAND === */
.cta-band {
  background: linear-gradient(135deg, #2A2218 0%, #3D2E1A 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(184,154,94,0.1) 1px, transparent 0);
  background-size: 48px 48px;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; }

/* === FORMS === */
.form-wrapper {
  background: var(--white);
  border-radius: 12px;
  padding: 3rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--ivory);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(184,154,94,0.12);
}
.form-group textarea { min-height: 130px; resize: vertical; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.field-error {
  display: block;
  color: #c0392b;
  font-size: 0.78rem;
  margin-top: 0.3rem;
}

.form-submit { margin-top: 0.5rem; }
.form-submit .btn { width: 100%; justify-content: center; display: flex; }

/* === ALERTS === */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.alert-success {
  background: #f0faf4;
  border: 1px solid #a8d5b5;
  color: #1e6e3d;
}
.alert-error {
  background: #fef2f2;
  border: 1px solid #f5c2c2;
  color: #922b21;
}
.alert-info {
  background: #fef9f0;
  border: 1px solid var(--gold-light);
  color: var(--gold-dark);
}

/* === AUTH PAGES === */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mist);
  padding: 6rem 1.5rem 3rem;
}
.auth-box {
  width: 100%;
  max-width: 460px;
}
.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}
.auth-header .brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--charcoal);
  display: block;
  margin-bottom: 0.5rem;
}
.auth-header .brand em { color: var(--gold); font-style: italic; }
.auth-header p { color: var(--ash); font-size: 0.9rem; }
.auth-footer-text {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--ash);
}

/* === DASHBOARD === */
.dashboard-layout {
  min-height: 100vh;
  background: var(--mist);
  padding-top: 72px;
}
.dashboard-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.dashboard-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dashboard-content { padding: 3rem 0; }
.dashboard-welcome {
  margin-bottom: 2.5rem;
}
.dashboard-welcome h2 { margin-bottom: 0.25rem; }
.dashboard-welcome p { color: var(--ash); }

/* === TABLE === */
.data-table-wrap {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}
.data-table-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.data-table-header h3 { font-size: 1.1rem; }
.badge-count {
  background: var(--blush);
  color: var(--gold-dark);
  font-size: 0.72rem;
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  font-weight: 500;
}

table {
  width: 100%;
  border-collapse: collapse;
}
th {
  text-align: left;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ash);
  padding: 0.85rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--mist);
  font-weight: 500;
}
td {
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(184,154,94,0.1);
  font-size: 0.9rem;
  vertical-align: middle;
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(253,250,245,0.6); }

.status-badge {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.status-new { background: #f0faf4; color: #1e6e3d; border: 1px solid #a8d5b5; }
.status-pending { background: #fef9f0; color: var(--gold-dark); border: 1px solid var(--gold-light); }

.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--ash);
}
.empty-state .empty-icon { font-size: 2.5rem; margin-bottom: 1rem; opacity: 0.4; }
.empty-state p { font-size: 0.9rem; }

/* Admin tabs */
.admin-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 2rem;
}
.tab-btn {
  padding: 0.85rem 1.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--ash);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  font-family: var(--font-sans);
  font-weight: 500;
}
.tab-btn:hover { color: var(--gold); }
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }

.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* === FOOTER === */
footer {
  background: #1E1810;
  color: rgba(255,255,255,0.65);
  padding: 4.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(184,154,94,0.15);
  margin-bottom: 2rem;
}
.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-brand em { color: var(--gold-light); font-style: italic; }
.footer-desc { font-size: 0.875rem; line-height: 1.7; max-width: 280px; }
.footer-heading {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  margin-bottom: 0.8rem;
}
.footer-contact-item .icon { color: var(--gold); margin-top: 0.15rem; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--gold-light); }

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(0.85); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === MISC === */
.divider {
  width: 48px; height: 1px;
  background: var(--gold);
  margin: 1.25rem 0;
}
.divider-center { margin: 1.25rem auto; }

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.tag {
  background: var(--blush);
  color: var(--gold-dark);
  font-size: 0.72rem;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 3rem;
}
.stat-item {
  background: var(--white);
  padding: 2rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ash);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(253,250,245,0.98);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--charcoal); font-size: 0.85rem; }
  .nav-cta { display: none; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .admin-tabs { overflow-x: auto; }
  .data-table-wrap { overflow-x: auto; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .about-badge-float { right: 0; }
  .form-wrapper { padding: 2rem 1.5rem; }
  .dashboard-header-inner { flex-direction: column; gap: 1rem; align-items: flex-start; }
}

@media (max-width: 480px) {
  .section { padding: 3.5rem 0; }
  .hero h1 { font-size: 2.2rem; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}

/* =========================================
   ADDITIONAL STYLES — Emmeli Experience
   ========================================= */

/* Hero Video */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.45;
}

/* Image Cards */
.img-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--mist);
}
.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.img-card:hover img { transform: scale(1.05); }
.img-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,34,24,0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.img-card-label {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
}

/* Service Image Card */
.svc-img-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 240px;
  margin-bottom: 1.5rem;
}
.svc-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.svc-card-new:hover .svc-img-card img { transform: scale(1.06); }
.svc-card-new {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.svc-card-new:hover { transform: translateY(-8px); box-shadow: 0 24px 64px rgba(42,42,42,0.15); }
.svc-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.svc-card-body h3 { margin-bottom: 0.5rem; font-size: 1.4rem; }
.svc-card-body p { color: var(--ash); font-size: 0.9rem; flex: 1; margin-bottom: 1.25rem; }

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.gallery-grid .img-card:first-child {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

/* =========================================
   MULTI-STEP PLANNING FORM
   ========================================= */
.planner-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.progress-bar-wrap {
  margin-bottom: 2.5rem;
}
.progress-track {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  transition: width 0.5s ease;
}
.progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ash);
}
.step-num {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--gold);
}

/* Step container */
.step-pane { display: none; }
.step-pane.active { display: block; animation: fadeUp 0.4s ease both; }

.step-header { margin-bottom: 2rem; }
.step-header h2 { font-size: 1.9rem; margin-bottom: 0.5rem; }
.step-header p { color: var(--ash); font-size: 0.95rem; }

/* Option Cards (event type, guest count, etc.) */
.option-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.option-card {
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  user-select: none;
}
.option-card:hover { border-color: var(--gold-light); background: #fef9f2; }
.option-card.selected { border-color: var(--gold); background: #fef9f2; box-shadow: 0 0 0 3px rgba(184,154,94,0.2); }
.option-card .opt-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.option-card .opt-label { font-size: 0.85rem; font-weight: 500; color: var(--charcoal); }
.option-card.selected .opt-label { color: var(--gold-dark); }

/* Checkbox cards */
.check-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.85rem;
  margin: 1.5rem 0;
}
.check-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 0.9rem 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  user-select: none;
}
.check-card:hover { border-color: var(--gold-light); }
.check-card.checked { border-color: var(--gold); background: #fef9f2; }
.check-box {
  width: 20px; height: 20px;
  border: 2px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  font-size: 0.7rem;
  color: var(--white);
}
.check-card.checked .check-box { background: var(--gold); border-color: var(--gold); }
.check-card.checked .check-box::after { content: '✓'; }
.check-card-text { font-size: 0.875rem; color: var(--charcoal); }
.check-card-icon { font-size: 1.1rem; }

/* Budget slider display */
.budget-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}
.budget-card {
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}
.budget-card:hover { border-color: var(--gold-light); }
.budget-card.selected { border-color: var(--gold); background: #fef9f2; }
.budget-amount { font-family: var(--font-serif); font-size: 1.3rem; color: var(--gold); display: block; }
.budget-label { font-size: 0.75rem; color: var(--ash); display: block; margin-top: 0.25rem; }

/* Step navigation */
.step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* Estimate Result */
.estimate-box {
  background: linear-gradient(135deg, #2A2218 0%, #3D2E1A 100%);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
.estimate-box::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(184,154,94,0.1) 1px, transparent 0);
  background-size: 32px 32px;
}
.estimate-box .inner { position: relative; z-index: 1; }
.estimate-range {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--gold-light);
  display: block;
  margin: 0.75rem 0;
  line-height: 1;
}
.estimate-note { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.summary-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
  justify-content: center;
}
.summary-pill {
  background: rgba(184,154,94,0.15);
  color: var(--gold-light);
  border: 1px solid rgba(184,154,94,0.3);
  border-radius: 20px;
  padding: 0.3rem 0.9rem;
  font-size: 0.75rem;
}

/* About image tall */
.about-img-tall {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 520px;
}
.about-img-tall img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-img-tall::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(42,34,24,0.4));
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .img-card:first-child { grid-column: span 2; }
  .option-cards { grid-template-columns: repeat(2, 1fr); }
  .budget-cards { grid-template-columns: repeat(2, 1fr); }
  .check-cards { grid-template-columns: 1fr; }
}

/* =========================================
   BLOG & GALLERY — Additional Styles
   ========================================= */

/* Blog card */
.blog-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(42,42,42,.13); }
.blog-card-img {
  height: 220px;
  overflow: hidden;
  background: var(--mist);
  position: relative;
}
.blog-card-img img { width:100%; height:100%; object-fit:cover; transition: transform .5s ease; display:block; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 1.75rem; flex:1; display:flex; flex-direction:column; }
.blog-meta {
  display: flex; align-items:center; gap:.75rem; margin-bottom:.75rem; flex-wrap:wrap;
}
.blog-meta .date { font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; color:var(--ash); }
.blog-meta .cat  { font-size:.68rem; letter-spacing:.12em; text-transform:uppercase; color:var(--gold); background:var(--blush); padding:.2rem .7rem; border-radius:20px; }
.blog-card-body h3 { font-size:1.25rem; margin-bottom:.6rem; line-height:1.3; }
.blog-card-body p { font-size:.875rem; color:var(--ash); flex:1; margin-bottom:1.25rem; }
.blog-card-body .read-more { font-size:.75rem; letter-spacing:.14em; text-transform:uppercase; color:var(--gold); font-weight:500; }
.blog-card-body .read-more:hover { color:var(--gold-dark); }

/* Single blog post */
.post-hero { padding: 8rem 0 4rem; background: linear-gradient(135deg,#2A2218,#3D2E1A); }
.post-hero h1 { color:var(--white); max-width:760px; }
.post-body { max-width: 760px; margin: 0 auto; }
.post-body h2, .post-body h3 { font-family:var(--font-serif); margin: 2rem 0 .75rem; }
.post-body p  { color:var(--ash); line-height:1.85; margin-bottom:1.25rem; }
.post-body img { border-radius:8px; margin: 1.5rem 0; width:100%; }
.post-body ul { margin: 1rem 0 1.25rem 1.5rem; color:var(--ash); }
.post-body ul li { margin-bottom:.4rem; }
.post-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 1.75rem 0;
  background: var(--mist);
  border-radius: 0 8px 8px 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--charcoal);
}
.post-cover { width:100%; max-height:480px; object-fit:cover; border-radius:10px; margin-bottom:2.5rem; }
.post-tag { display:inline-block; background:var(--blush); color:var(--gold-dark); font-size:.68rem; padding:.25rem .8rem; border-radius:20px; margin-right:.4rem; margin-bottom:.4rem; letter-spacing:.08em; text-transform:uppercase; }

/* Gallery */
.gallery-tabs {
  display: flex; gap:.5rem; flex-wrap:wrap; margin-bottom:2.5rem;
}
.gallery-tab {
  padding: .65rem 1.4rem;
  border: 1.5px solid var(--border);
  border-radius: 30px;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  color: var(--ash);
  font-family: var(--font-sans);
  font-weight: 500;
}
.gallery-tab:hover { border-color:var(--gold-light); color:var(--gold); }
.gallery-tab.active { background:var(--gold); border-color:var(--gold); color:var(--white); }

.gallery-section { display:none; }
.gallery-section.active { display:block; animation: fadeUp .4s ease both; }

.gallery-masonry {
  columns: 3;
  column-gap: 1rem;
}
@media(max-width:768px){ .gallery-masonry { columns:2; } }
@media(max-width:480px){ .gallery-masonry { columns:1; } }

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--mist);
}
.gallery-item img {
  width:100%; display:block;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position:absolute; inset:0;
  background: linear-gradient(to top, rgba(42,34,24,.7) 0%, transparent 55%);
  opacity:0; transition: opacity .35s ease;
  display:flex; align-items:flex-end; padding:1.25rem;
}
.gallery-item:hover .gallery-item-overlay { opacity:1; }
.gallery-item-overlay span { color:var(--white); font-family:var(--font-serif); font-style:italic; font-size:1rem; }
.gallery-delete-btn {
  position:absolute; top:.6rem; right:.6rem;
  background:rgba(192,57,43,.85); color:white;
  border:none; border-radius:50%; width:28px; height:28px;
  font-size:.75rem; cursor:pointer; display:none;
  align-items:center; justify-content:center;
  transition: var(--transition);
}
.admin-gallery-mode .gallery-item:hover .gallery-delete-btn { display:flex; }

/* Lightbox */
.lightbox {
  display:none; position:fixed; inset:0; z-index:9000;
  background:rgba(0,0,0,.92); align-items:center; justify-content:center;
}
.lightbox.open { display:flex; }
.lightbox img { max-width:90vw; max-height:88vh; border-radius:6px; object-fit:contain; }
.lightbox-close {
  position:absolute; top:1.5rem; right:1.5rem;
  color:white; font-size:2rem; cursor:pointer; background:none; border:none;
  opacity:.7; transition:opacity .2s;
}
.lightbox-close:hover { opacity:1; }
.lightbox-caption { position:absolute; bottom:1.5rem; left:50%; transform:translateX(-50%); color:rgba(255,255,255,.7); font-family:var(--font-serif); font-style:italic; font-size:1rem; }

/* Admin blog/gallery form */
.admin-form-card {
  background: var(--white);
  border-radius:10px;
  padding:2rem;
  border:1px solid var(--border);
  box-shadow:var(--shadow-soft);
  margin-bottom:2rem;
}
.admin-form-card h4 { font-family:var(--font-serif); margin-bottom:1.25rem; font-size:1.2rem; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
@media(max-width:600px){ .form-row { grid-template-columns:1fr; } }

/* Blog admin table post preview */
.post-title-cell { max-width:260px; }
.post-title-cell strong { display:block; font-size:.875rem; line-height:1.3; }
.post-title-cell small { color:var(--ash); font-size:.75rem; }

/* Published toggle */
.pub-badge { display:inline-block; padding:.2rem .7rem; border-radius:20px; font-size:.68rem; font-weight:500; }
.pub-yes { background:#f0faf4; color:#1e6e3d; border:1px solid #a8d5b5; }
.pub-no  { background:#fef9f0; color:var(--gold-dark); border:1px solid var(--gold-light); }
