/* ============================================================
   style.css – Hannu Annala Website
   Aesthetic: Refined Classical | Deep Burgundy + Cream + Gold
   ============================================================ */

/* ── Custom Properties ──────────────────────────────────────── */
:root {
  --burgundy:   #6B1F2A;
  --burgundy-d: #4a1119;
  --burgundy-l: #8f2d3b;
  --gold:       #c9a84c;
  --gold-l:     #e8c87e;
  --cream:      #f7f2ea;
  --cream-d:    #ede5d5;
  --charcoal:   #1c1c1e;
  --charcoal-m: #3a3a3c;
  --text:       #2b2118;
  --text-muted: #6b5c50;
  --white:      #ffffff;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Jost', system-ui, sans-serif;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 6px 24px rgba(0,0,0,.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.18);

  --radius:     4px;
  --radius-lg:  12px;

  --nav-h:      68px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select {
  font-family: var(--ff-body);
  font-size: 1rem;
}
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }

/* ── Layout Utilities ───────────────────────────────────────── */
.container   { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 3rem); }
.section      { padding: clamp(4rem, 8vw, 8rem) 0; }
.section-alt  { background: var(--cream-d); }
.center-cta   { text-align: center; margin-top: 3rem; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-title { color: var(--charcoal); margin-bottom: 1rem; }
.section-desc  { color: var(--text-muted); max-width: 520px; margin: 0 auto; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .04em;
  transition: all .22s ease;
}
.btn-primary {
  background: var(--burgundy);
  color: var(--white);
  border: 2px solid var(--burgundy);
}
.btn-primary:hover {
  background: var(--burgundy-d);
  border-color: var(--burgundy-d);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(107,31,42,.35);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
}
.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border: 2px solid var(--burgundy);
}
.btn-outline:hover {
  background: var(--burgundy);
  color: var(--white);
}
.btn-sm   { padding: .5rem 1.1rem; font-size: .82rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-danger { background: #c0392b; color: #fff; border: 2px solid #c0392b; }
.btn-danger:hover { background: #a93226; }

/* ── Navigation ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .3s, box-shadow .3s;
}
.site-header.scrolled {
  background: rgba(28,28,30,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 clamp(1rem, 4vw, 3rem);
  max-width: 1400px;
  margin: 0 auto;
}
.logo { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--ff-display);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: .02em;
}
.logo-sub {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.main-nav a {
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  font-weight: 400;
  letter-spacing: .04em;
  position: relative;
  transition: color .2s;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .2s;
}
.main-nav a:hover { color: var(--white); }
.main-nav a:hover::after { transform: scaleX(1); }
.main-nav .nav-btn {
  background: var(--burgundy);
  color: var(--white) !important;
  padding: .45rem 1.2rem;
  border-radius: var(--radius);
  border: 2px solid var(--burgundy);
  transition: all .2s;
}
.main-nav .nav-btn::after { display: none; }
.main-nav .nav-btn:hover { background: transparent; color: var(--gold) !important; border-color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

/* ── Hero ─────────────────────────────────────────────────────  */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(74,17,25,.92) 0%, rgba(28,28,30,.8) 100%),
    url('https://images.unsplash.com/photo-1510915361894-db8b60106cb1?auto=format&fit=crop&w=1600&q=80')
    center/cover no-repeat;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: calc(var(--nav-h) + 3rem) 2rem 4rem;
  max-width: 800px;
  animation: fadeUp .9s both;
}
.hero-eyebrow {
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -.01em;
}
.hero-title em { font-style: italic; color: var(--gold-l); }
.hero-lead {
  font-size: clamp(.9rem, 2vw, 1.1rem);
  color: rgba(255,255,255,.78);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-contact-strip {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: .88rem;
  color: rgba(255,255,255,.7);
}
.hero-contact-strip a { color: var(--gold-l); transition: color .2s; }
.hero-contact-strip a:hover { color: var(--white); }
.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 2;
  animation: fadeUp 1.2s both;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 2s infinite;
}

/* ── Events ─────────────────────────────────────────────────── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 0;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.event-date-badge {
  background: var(--burgundy);
  color: var(--white);
  min-width: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem .5rem;
}
.ev-day { font-family: var(--ff-display); font-size: 2.2rem; line-height: 1; }
.ev-mon { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-l); }
.event-body { padding: 1.25rem 1.25rem 1.25rem 1rem; flex: 1; }
.event-type-tag {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--cream);
  color: var(--gold);
  border: 1px solid var(--gold-l);
  padding: .15rem .6rem;
  border-radius: 20px;
  margin-bottom: .5rem;
}
.event-title { font-size: 1.1rem; color: var(--charcoal); margin-bottom: .4rem; }
.event-meta  { font-size: .8rem; color: var(--text-muted); margin-bottom: .5rem; }
.event-desc  { font-size: .85rem; color: var(--text-muted); margin-bottom: 1rem; }
.event-footer { display: flex; align-items: center; justify-content: space-between; }
.event-price { font-family: var(--ff-display); font-size: 1.3rem; color: var(--burgundy); }

/* ── Products ────────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.product-img-wrap { height: 180px; background: var(--cream-d); display: flex; align-items: center; justify-content: center; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.product-img-placeholder { font-size: 4rem; }
.product-info { padding: 1.25rem; }
.product-cat  { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); }
.product-name { font-size: 1rem; color: var(--charcoal); margin: .35rem 0 .4rem; line-height: 1.3; }
.product-desc { font-size: .82rem; color: var(--text-muted); margin-bottom: 1rem; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: var(--ff-display); font-size: 1.3rem; color: var(--burgundy); }

/* ── About ───────────────────────────────────────────────────── */
.about-strip { background: var(--charcoal); color: var(--white); padding: 5rem 0; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.about-text .section-label { color: var(--gold); }
.about-text h2 { color: var(--white); margin-bottom: 1.25rem; }
.about-text p  { color: rgba(255,255,255,.72); margin-bottom: 1rem; }
.about-links-panel h3 { color: var(--gold); font-size: 1rem; margin-bottom: 1.25rem; letter-spacing: .05em; }
.pub-link {
  display: block;
  padding: .65rem 1rem;
  border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--radius);
  color: rgba(255,255,255,.8);
  font-size: .88rem;
  margin-bottom: .6rem;
  transition: all .2s;
}
.pub-link:hover { border-color: var(--gold); color: var(--gold); transform: translateX(4px); }

/* ── Contact ─────────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-info .section-title { text-align: left; }
.contact-details { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { font-size: 1.4rem; line-height: 1; }
.contact-item strong { display: block; font-weight: 500; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .1rem; }
.contact-item a { color: var(--burgundy); transition: color .2s; }
.contact-item a:hover { color: var(--burgundy-d); }

/* ── Glass card / forms ──────────────────────────────────────── */
.glass-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.glass-card h3 { margin-bottom: 1.5rem; color: var(--charcoal); }
.form-group { margin-bottom: 1.2rem; }
.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .45rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--cream-d);
  border-radius: var(--radius);
  font-size: .95rem;
  background: var(--cream);
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(107,31,42,.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-check {
  display: flex !important;
  align-items: flex-start;
  gap: .75rem;
}
.form-check input { width: auto !important; margin-top: .2rem; flex-shrink: 0; }
.form-check label { text-transform: none !important; letter-spacing: 0 !important; font-size: .85rem !important; color: var(--text-muted) !important; }
.err { color: #c0392b; }
.ok  { color: #27ae60; }

/* ── Newsletter ──────────────────────────────────────────────── */
.newsletter-section {
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-d));
  padding: 4rem 0;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.nl-text h2 { color: var(--white); margin-bottom: .5rem; }
.nl-text p  { color: rgba(255,255,255,.7); }
.nl-form {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  align-items: flex-start;
  flex: 1;
  max-width: 600px;
}
.nl-form input {
  flex: 1;
  min-width: 180px;
  padding: .75rem 1rem;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  background: rgba(255,255,255,.12);
  color: var(--white);
  font-size: .95rem;
  outline: none;
  transition: border-color .2s;
}
.nl-form input::placeholder { color: rgba(255,255,255,.5); }
.nl-form input:focus { border-color: var(--gold); }
.nl-msg { width: 100%; font-size: .88rem; }

/* ── Flash bar ───────────────────────────────────────────────── */
.flash-bar { position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 900; }
.flash { padding: .85rem 1.5rem; text-align: center; font-size: .9rem; }
.flash-success { background: #d4edda; color: #155724; }
.flash-error   { background: #f8d7da; color: #721c24; }
.flash-info    { background: #d1ecf1; color: #0c5460; }

/* ── Cart ────────────────────────────────────────────────────── */
.cart-fab {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 800;
  background: var(--burgundy);
  color: var(--white);
  width: 58px; height: 58px;
  border-radius: 50%;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.cart-fab:hover { transform: scale(1.08); box-shadow: var(--shadow-lg); }
.cart-count {
  background: var(--gold);
  color: var(--charcoal);
  font-size: .65rem;
  font-weight: 700;
  border-radius: 50%;
  width: 20px; height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 4px; right: 4px;
}
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.cart-overlay.active { opacity: 1; pointer-events: all; }
.cart-sidebar {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 100vw);
  height: 100vh;
  background: var(--white);
  z-index: 1200;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.cart-sidebar.open { transform: translateX(0); }
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--cream-d);
}
.cart-header h3 { font-size: 1.2rem; }
.cart-close { font-size: 1.3rem; color: var(--text-muted); transition: color .2s; }
.cart-close:hover { color: var(--burgundy); }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--cream-d);
}
.cart-item-info { flex: 1; }
.cart-item-name { font-size: .9rem; font-weight: 500; }
.cart-item-price { font-size: .85rem; color: var(--text-muted); }
.cart-item-qty { display: flex; align-items: center; gap: .5rem; }
.qty-btn {
  width: 26px; height: 26px;
  border: 1px solid var(--cream-d);
  border-radius: var(--radius);
  font-size: 1rem;
  color: var(--text-muted);
  transition: all .2s;
}
.qty-btn:hover { border-color: var(--burgundy); color: var(--burgundy); }
.qty-num { font-size: .9rem; min-width: 20px; text-align: center; }
.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--cream-d);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cart-total { font-family: var(--ff-display); font-size: 1.3rem; text-align: right; }

/* ── Dashboard styles ────────────────────────────────────────── */
.dashboard-layout {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 260px 1fr;
}
.sidebar {
  background: var(--charcoal);
  padding: 2rem 0;
  position: sticky;
  top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.sidebar-brand { padding: 0 1.5rem 2rem; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 1.5rem; }
.sidebar-brand p { font-size: .8rem; color: var(--gold); }
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .7rem 1.5rem;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: all .2s;
  border-left: 3px solid transparent;
}
.sidebar-nav a:hover, .sidebar-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,.06);
  border-left-color: var(--gold);
}
.sidebar-nav a .nav-icon { font-size: 1.1rem; width: 22px; }
.main-content { padding: 2.5rem; }
.page-title { font-size: 2rem; color: var(--charcoal); margin-bottom: 2rem; }
.stats-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; margin-bottom: 2.5rem; }
.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--burgundy);
}
.stat-card .stat-val { font-family: var(--ff-display); font-size: 2.5rem; color: var(--burgundy); }
.stat-card .stat-label { font-size: .8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }
.data-table-wrap { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; }
.data-table-header { padding: 1.25rem 1.5rem; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--cream-d); }
.data-table-header h3 { font-size: 1.1rem; }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th { text-align: left; padding: .85rem 1.25rem; font-size: .75rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); background: var(--cream); border-bottom: 1px solid var(--cream-d); }
.data-table td { padding: .85rem 1.25rem; font-size: .9rem; border-bottom: 1px solid var(--cream); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--cream); }
.badge {
  display: inline-block;
  padding: .2rem .65rem;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .04em;
}
.badge-success  { background: #d4edda; color: #155724; }
.badge-warning  { background: #fff3cd; color: #856404; }
.badge-danger   { background: #f8d7da; color: #721c24; }
.badge-info     { background: #d1ecf1; color: #0c5460; }
.badge-default  { background: var(--cream-d); color: var(--text-muted); }
.notif-bell {
  position: relative;
  display: inline-flex;
}
.notif-dot {
  position: absolute;
  top: -3px; right: -3px;
  width: 10px; height: 10px;
  background: var(--burgundy);
  border-radius: 50%;
  border: 2px solid var(--charcoal);
}
.action-btns { display: flex; gap: .5rem; }

/* ── Site footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand .logo-name { color: var(--white); }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.5); margin-top: .75rem; }
.footer-links h4 { color: var(--gold); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-links a, .footer-contact p { display: block; font-size: .88rem; margin-bottom: .5rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact h4 { color: var(--gold); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-contact a { color: rgba(255,255,255,.6); transition: color .2s; }
.footer-contact a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.25rem 0; text-align: center; font-size: .8rem; color: rgba(255,255,255,.4); }

/* ── Login / Register pages ──────────────────────────────────── */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 2rem; background: var(--cream-d); }
.auth-card { background: var(--white); border-radius: var(--radius-lg); padding: 3rem; width: min(480px, 100%); box-shadow: var(--shadow-lg); }
.auth-card .logo { align-items: center; margin-bottom: 2rem; }
.auth-card h2 { text-align: center; margin-bottom: .5rem; }
.auth-card .auth-sub { text-align: center; color: var(--text-muted); font-size: .9rem; margin-bottom: 2rem; }
.auth-footer { text-align: center; margin-top: 1.5rem; font-size: .88rem; color: var(--text-muted); }
.auth-footer a { color: var(--burgundy); }

/* ── Stripe payment widget ───────────────────────────────────── */
#stripe-card-element {
  padding: .85rem 1rem;
  border: 1.5px solid var(--cream-d);
  border-radius: var(--radius);
  background: var(--cream);
  transition: border-color .2s;
}
#stripe-card-element.StripeElement--focus { border-color: var(--burgundy); box-shadow: 0 0 0 3px rgba(107,31,42,.12); }
#card-errors { color: #c0392b; font-size: .85rem; margin-top: .5rem; }

/* ── Animations ──────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: .5; }
  50%       { opacity: 1; }
}
.animate-in { animation: fadeUp .6s both; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-inner, .contact-layout, .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .newsletter-inner { flex-direction: column; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .main-nav { display: none; flex-direction: column; position: fixed; inset: var(--nav-h) 0 0 0; background: rgba(28,28,30,.97); z-index: 999; padding: 2rem; gap: 1.5rem; }
  .main-nav.open { display: flex; }
  .hamburger { display: flex; }
}
@media (max-width: 600px) {
  .events-grid, .products-grid { grid-template-columns: 1fr; }
  .form-row.two-col { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
  .glass-card { padding: 1.5rem; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}

/* ── Utility ─────────────────────────────────────────────────── */
.empty-state   { color: var(--text-muted); text-align: center; padding: 3rem; width: 100%; }
.text-center   { text-align: center; }
.text-muted    { color: var(--text-muted); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.gap-1 { gap: .5rem; }
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.hidden { display: none !important; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }



