/* ==========================================================================
   BOW — Brand Management System
   Custom CSS Theme — Luxury Beauty Aesthetic
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES
   -------------------------------------------------------------------------- */
:root {
  /* Brand palette */
  --bow-red:        #C41230;
  --bow-red-dark:   #8B0A23;
  --bow-red-light:  #E85472;
  --bow-gold:       #C9A227;
  --bow-gold-light: #DFC156;
  --bow-cream:      #FFF5F7;
  --bow-dark:       #1C0A10;
  --bow-gray:       #6B5458;
  --bow-gray-light: #B8A0A5;
  --bow-white:      #FFFFFF;

  /* Semantic tokens */
  --color-text:           #2D1A1F;
  --color-text-muted:     var(--bow-gray);
  --color-text-inverse:   var(--bow-cream);
  --color-bg:             var(--bow-white);
  --color-bg-subtle:      var(--bow-cream);
  --color-border:         #E8D0D5;
  --color-border-focus:   var(--bow-red);
  --color-primary:        var(--bow-red);
  --color-primary-hover:  var(--bow-red-dark);
  --color-success:        #2D8B55;
  --color-danger:         var(--bow-red);
  --color-warning:        var(--bow-gold);

  /* Typography */
  --font-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif: "Playfair Display", "Georgia", "Times New Roman", serif;

  /* Spacing scale */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Radii */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  16px;

  /* Shadows */
  --shadow-sm:  0 1px 2px rgba(28, 10, 16, 0.06);
  --shadow-md:  0 4px 12px rgba(28, 10, 16, 0.08);
  --shadow-lg:  0 8px 24px rgba(28, 10, 16, 0.12);
  --shadow-xl:  0 16px 48px rgba(28, 10, 16, 0.16);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}


/* --------------------------------------------------------------------------
   2. RESET / NORMALIZE
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  min-height: 100vh;
}

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

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

a:hover {
  color: var(--color-primary-hover);
}

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

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

h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }

p {
  margin-bottom: var(--space-md);
}

p:last-child {
  margin-bottom: 0;
}


/* --------------------------------------------------------------------------
   3. BUTTONS
   -------------------------------------------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--bow-white);
  background: var(--bow-red);
  border: none;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(196, 18, 48, 0.3);
  transition:
    background var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--bow-red-dark);
  box-shadow: 0 4px 16px rgba(139, 10, 35, 0.4);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(139, 10, 35, 0.3);
}

.btn-primary:focus-visible {
  outline: 2px solid var(--bow-red-light);
  outline-offset: 2px;
}

.btn-primary--full {
  width: 100%;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--bow-red);
  background: transparent;
  border: 2px solid var(--bow-red);
  border-radius: var(--radius-md);
  transition:
    background var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast);
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--bow-red);
  color: var(--bow-white);
  border-color: var(--bow-red);
}

.btn-outline:focus-visible {
  outline: 2px solid var(--bow-red-light);
  outline-offset: 2px;
}


/* --------------------------------------------------------------------------
   4. FORM CONTROLS
   -------------------------------------------------------------------------- */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bow-gray);
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.8125rem 1rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--bow-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
  appearance: none;
}

.form-control::placeholder {
  color: var(--bow-gray-light);
}

.form-control:hover {
  border-color: var(--bow-gray-light);
}

.form-control:focus {
  outline: none;
  border-color: var(--bow-red);
  box-shadow: 0 0 0 3px rgba(196, 18, 48, 0.12);
}

.form-control--error {
  border-color: var(--color-danger);
}

.form-control--error:focus {
  box-shadow: 0 0 0 3px rgba(196, 18, 48, 0.2);
}

.form-hint {
  margin-top: var(--space-xs);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.form-error {
  margin-top: var(--space-xs);
  font-size: 0.8125rem;
  color: var(--color-danger);
  font-weight: 500;
}


/* --------------------------------------------------------------------------
   5. FLASH MESSAGES
   -------------------------------------------------------------------------- */
.flash {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  animation: flash-slide-in 0.3s ease-out;
}

.flash--notice {
  background: #F0FAF4;
  color: #1A5C36;
  border: 1px solid #B8E6CC;
}

.flash--alert {
  background: #FDF2F4;
  color: var(--bow-red-dark);
  border: 1px solid #F3BFC7;
}

.flash--warning {
  background: #FDF8E8;
  color: #7A6500;
  border: 1px solid #EDD98B;
}

@keyframes flash-slide-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* --------------------------------------------------------------------------
   6. UTILITY CLASSES
   -------------------------------------------------------------------------- */
.text-center  { text-align: center; }
.text-right   { text-align: right; }
.text-muted   { color: var(--color-text-muted); }
.text-primary { color: var(--color-primary); }
.text-danger  { color: var(--color-danger); }
.text-small   { font-size: 0.875rem; }
.text-xs      { font-size: 0.75rem; }

.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mt-xl  { margin-top: var(--space-xl); }
.mb-sm  { margin-bottom: var(--space-sm); }
.mb-md  { margin-bottom: var(--space-md); }
.mb-lg  { margin-bottom: var(--space-lg); }
.mb-xl  { margin-bottom: var(--space-xl); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}


/* --------------------------------------------------------------------------
   7. LOGIN PAGE — Centered card over abstract blurred background
   -------------------------------------------------------------------------- */

/* Full-viewport login page container */
main:has(.login-page) {
  display: contents;
}

.login-page {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #D5C8CC;
}

/* --- Abstract blurred background ---------------------------------------- */
/* Layered blobs that evoke warm reds, pinks, and skin tones from the brand
   palette. Heavy blur makes them completely abstract — no recognizable shapes. */
.login-page__bg {
  position: absolute;
  inset: -80px;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

/* Deep red — dominant blob, center-left */
.login-page__blob {
  position: absolute;
  border-radius: 50%;
}

.login-page__blob--1 {
  width: 55vw;
  height: 55vh;
  top: 15%;
  left: 10%;
  background: radial-gradient(
    ellipse at 40% 50%,
    rgba(196, 18, 48, 0.7) 0%,
    rgba(139, 10, 35, 0.5) 40%,
    rgba(139, 10, 35, 0.15) 70%,
    transparent 100%
  );
  animation: blob-drift-1 18s ease-in-out infinite;
}

/* Warm skin pink — upper right */
.login-page__blob--2 {
  width: 45vw;
  height: 50vh;
  top: -5%;
  right: 5%;
  background: radial-gradient(
    ellipse at 60% 40%,
    rgba(232, 196, 184, 0.8) 0%,
    rgba(212, 169, 154, 0.5) 40%,
    rgba(212, 169, 154, 0.1) 70%,
    transparent 100%
  );
  animation: blob-drift-2 22s ease-in-out infinite;
}

/* Soft rose-gray — bottom area, grounds the composition */
.login-page__blob--3 {
  width: 60vw;
  height: 40vh;
  bottom: -5%;
  left: 20%;
  background: radial-gradient(
    ellipse at 50% 60%,
    rgba(213, 200, 204, 0.9) 0%,
    rgba(184, 160, 165, 0.5) 45%,
    transparent 80%
  );
  animation: blob-drift-3 20s ease-in-out infinite;
}

/* Deep crimson accent — small, concentrated, adds depth */
.login-page__blob--4 {
  width: 30vw;
  height: 35vh;
  top: 40%;
  right: 15%;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(196, 18, 48, 0.4) 0%,
    rgba(232, 84, 114, 0.2) 40%,
    transparent 70%
  );
  animation: blob-drift-4 16s ease-in-out infinite;
}

/* Glitter texture — subtle sparkle dots across the entire background */
.login-page__glitter {
  position: absolute;
  inset: 0;
  filter: blur(0px);
  background:
    radial-gradient(1.5px 1.5px at 20% 30%, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 70%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
    radial-gradient(2px 2px at 65% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 55%, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 10% 80%, rgba(255, 255, 255, 0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 45%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
    radial-gradient(2px 2px at 90% 85%, rgba(255, 255, 255, 0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 10%, rgba(255, 255, 255, 0.45) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 75% 65%, rgba(255, 255, 255, 0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 90%, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
  animation: glitter-shift 8s ease-in-out infinite;
}

/* Gentle drifting animations for organic feel */
@keyframes blob-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(3%, -2%) scale(1.04); }
  66% { transform: translate(-2%, 3%) scale(0.97); }
}

@keyframes blob-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-4%, 2%) scale(0.96); }
  66% { transform: translate(2%, -3%) scale(1.03); }
}

@keyframes blob-drift-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(3%, -2%) scale(1.05); }
}

@keyframes blob-drift-4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-3%, 3%) scale(1.06); }
}

@keyframes glitter-shift {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.9; }
}


/* --- Login card (centered) ---------------------------------------------- */
.login-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  margin: var(--space-lg);
  padding: var(--space-2xl) var(--space-2xl) var(--space-xl);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 8px 32px rgba(28, 10, 16, 0.12),
    0 1px 2px rgba(28, 10, 16, 0.06);
}

/* Card header — logo + tagline */
.login-card__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.login-card__logo {
  display: block;
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: var(--bow-red);
  line-height: 1;
}

.login-card__dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bow-gold);
  margin: var(--space-sm) auto var(--space-md);
  box-shadow: 0 0 10px rgba(201, 162, 39, 0.5);
  animation: card-dot-glow 3s ease-in-out infinite;
}

@keyframes card-dot-glow {
  0%, 100% { box-shadow: 0 0 10px rgba(201, 162, 39, 0.4); }
  50% { box-shadow: 0 0 20px rgba(201, 162, 39, 0.7); }
}

.login-card__tagline {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bow-gray);
}

/* Form fields */
.login-card__form {
  display: flex;
  flex-direction: column;
}

.login-card__field {
  margin-bottom: var(--space-lg);
}

.login-card__label {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bow-gray);
}

.login-card__input {
  display: block;
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--color-text);
  background: rgba(255, 245, 247, 0.6);
  border: 1.5px solid rgba(232, 208, 213, 0.6);
  border-radius: var(--radius-md);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast);
  appearance: none;
}

.login-card__input::placeholder {
  color: var(--bow-gray-light);
}

.login-card__input:hover {
  border-color: var(--bow-gray-light);
}

.login-card__input:focus {
  outline: none;
  background: var(--bow-white);
  border-color: var(--bow-red);
  box-shadow: 0 0 0 3px rgba(196, 18, 48, 0.1);
}

/* Submit button */
.login-card__submit {
  margin-top: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.875rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bow-white);
  background: var(--bow-red);
  border: none;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(196, 18, 48, 0.3);
  cursor: pointer;
  transition:
    background var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
}

.login-card__submit:hover {
  background: var(--bow-red-dark);
  box-shadow: 0 4px 16px rgba(139, 10, 35, 0.4);
  transform: translateY(-1px);
}

.login-card__submit:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(139, 10, 35, 0.3);
}

.login-card__submit:focus-visible {
  outline: 2px solid var(--bow-red-light);
  outline-offset: 2px;
}


/* --------------------------------------------------------------------------
   8. RESPONSIVE — Login page
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .login-card {
    margin: var(--space-md);
    padding: var(--space-xl) var(--space-lg) var(--space-lg);
    border-radius: var(--radius-lg);
  }

  .login-card__logo {
    font-size: 2.25rem;
  }

  .login-card__header {
    margin-bottom: var(--space-xl);
  }
}


/* --------------------------------------------------------------------------
   9. DASHBOARD — Top nav + cards layout
   -------------------------------------------------------------------------- */

/* Override body/main for dashboard layout */
main:has(.dashboard) {
  display: contents;
}

.dashboard {
  min-height: 100vh;
  background: var(--color-bg-subtle);
}

/* --- Top navigation bar -------------------------------------------------- */
.dashboard-nav {
  background: var(--bow-dark);
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
}

.dashboard-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 64px;
}

.dashboard-nav__brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.dashboard-nav__logo {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: var(--bow-red);
  text-shadow: 0 0 20px rgba(196, 18, 48, 0.2);
  line-height: 1;
}

.dashboard-nav__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bow-gold);
  box-shadow: 0 0 8px rgba(201, 162, 39, 0.4);
  margin-top: 4px;
  align-self: flex-end;
}

.dashboard-nav__user {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.dashboard-nav__email {
  font-size: 0.8125rem;
  color: var(--bow-gray-light);
  letter-spacing: 0.02em;
}

.dashboard-nav__logout {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--bow-gray-light);
  background: none;
  border: 1px solid rgba(184, 160, 165, 0.25);
  border-radius: var(--radius-sm);
  padding: 0.375rem 0.875rem;
  cursor: pointer;
  transition:
    color var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast);
  letter-spacing: 0.03em;
}

.dashboard-nav__logout:hover {
  color: var(--bow-cream);
  border-color: rgba(184, 160, 165, 0.5);
  background: rgba(255, 255, 255, 0.05);
}


/* --- Hero / welcome section ---------------------------------------------- */
.dashboard-hero {
  position: relative;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(196, 18, 48, 0.04) 0%, transparent 60%),
    var(--bow-white);
  padding: var(--space-3xl) var(--space-lg) var(--space-2xl);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.dashboard-hero__content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.dashboard-hero__heading {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.dashboard-hero__subtitle {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 480px;
  line-height: 1.6;
}

.dashboard-hero__accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: linear-gradient(
    135deg,
    transparent 40%,
    rgba(201, 162, 39, 0.03) 60%,
    rgba(201, 162, 39, 0.06) 80%,
    transparent 100%
  );
  pointer-events: none;
}


/* --- Cards grid ---------------------------------------------------------- */
.dashboard-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-lg);
}

.dashboard-card {
  position: relative;
  background: var(--bow-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition:
    box-shadow var(--transition-base),
    border-color var(--transition-base),
    transform var(--transition-base);
  overflow: hidden;
}

.dashboard-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--bow-red) 0%,
    var(--bow-red-light) 50%,
    var(--bow-gold-light) 100%
  );
  opacity: 0;
  transition: opacity var(--transition-base);
}

.dashboard-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 162, 39, 0.2);
  transform: translateY(-2px);
}

.dashboard-card:hover::before {
  opacity: 1;
}

.dashboard-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--color-bg-subtle);
  color: var(--bow-red);
  margin-bottom: var(--space-lg);
  transition: background var(--transition-base);
}

.dashboard-card:hover .dashboard-card__icon {
  background: rgba(196, 18, 48, 0.06);
}

.dashboard-card__body {
  margin-bottom: var(--space-md);
}

.dashboard-card__title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.dashboard-card__description {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.dashboard-card__badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bow-gold);
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: 100px;
  padding: 0.2rem 0.625rem;
}


/* --------------------------------------------------------------------------
   10. RESPONSIVE — Dashboard
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .dashboard-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    padding: var(--space-xl) var(--space-md);
  }

  .dashboard-hero {
    padding: var(--space-2xl) var(--space-md) var(--space-xl);
  }

  .dashboard-hero__heading {
    font-size: 1.75rem;
  }

  .dashboard-nav__inner {
    padding: 0 var(--space-md);
  }
}

@media (max-width: 600px) {
  .dashboard-cards {
    grid-template-columns: 1fr;
  }

  .dashboard-nav__email {
    display: none;
  }

  .dashboard-nav__inner {
    height: 56px;
  }

  .dashboard-hero__heading {
    font-size: 1.5rem;
  }

  .dashboard-hero__subtitle {
    font-size: 0.875rem;
  }

  .dashboard-card {
    padding: var(--space-lg);
  }
}
