/*
Theme Name: Maunakea Mushrooms
Theme URI: https://maunakeamushrooms.com
Author: Maunakea Mushrooms
Description: Custom theme for Maunakea Mushrooms — premium organic shiitake growers on Hawaiʻi Island.
Version: 1.0.0
License: Private
Text Domain: maunakea
*/

/* ═══════════════════════════════════════════════════════════════
   CSS VARIABLES
═══════════════════════════════════════════════════════════════ */
:root {
  --brown-dark:    #3d1c02;
  --brown-mid:     #6b3a2a;
  --brown-warm:    #9c5c3c;
  --brown-light:   #c4874a;
  --cream-dark:    #e8dfc8;
  --cream:         #f0ebe0;
  --cream-light:   #faf8f3;
  --green-dark:    #2d5a3d;
  --green-mid:     #3d6b4f;
  --green-light:   #6b9e7e;
  --green-pale:    #c8e6d0;
  --text-dark:     #2c1a0e;
  --text-mid:      #5a3a24;
  --text-light:    #8a6a54;
  --border:        #ddd5c0;
  --shadow-sm:     0 2px 8px rgba(61,28,2,0.08);
  --shadow-md:     0 4px 20px rgba(61,28,2,0.12);
  --shadow-lg:     0 8px 40px rgba(61,28,2,0.16);
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --transition:    0.25s ease;
  --font-heading:  'Lora', Georgia, serif;
  --font-body:     'Nunito Sans', 'Segoe UI', sans-serif;
  --max-width:     1200px;
  --header-h:      72px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--cream-light);
  color: var(--text-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-mid); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-dark); }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* ═══════════════════════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--brown-dark);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1rem; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-mid);
  display: block;
  margin-bottom: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   LAYOUT UTILITIES
═══════════════════════════════════════════════════════════════ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--narrow { max-width: 780px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--sm { padding: 3rem 0; }
.section--lg { padding: 7rem 0; }
.section--cream { background: var(--cream); }
.section--dark { background: var(--brown-dark); color: var(--cream-light); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--cream-light); }
.section--dark p { color: var(--cream-dark); }
.section--green { background: var(--green-dark); color: var(--cream-light); }
.section--green h2, .section--green h3 { color: var(--cream-light); }
.section--green p { color: var(--green-pale); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.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; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-2 { margin-top: 2rem; }

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}
.btn--primary {
  background: var(--green-mid);
  color: white;
  border-color: var(--green-mid);
}
.btn--primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  background: transparent;
  color: var(--green-mid);
  border-color: var(--green-mid);
}
.btn--outline:hover {
  background: var(--green-mid);
  color: white;
}
.btn--cream {
  background: var(--cream-light);
  color: var(--brown-dark);
  border-color: var(--cream-light);
}
.btn--cream:hover {
  background: var(--cream);
  color: var(--brown-dark);
  transform: translateY(-1px);
}
.btn--brown {
  background: var(--brown-mid);
  color: var(--cream-light);
  border-color: var(--brown-mid);
}
.btn--brown:hover {
  background: var(--brown-dark);
  border-color: var(--brown-dark);
  color: var(--cream-light);
}
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════
   SITE HEADER / NAVIGATION
═══════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 248, 243, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.site-logo img {
  height: 48px;
  width: auto;
  border-radius: 50%;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brown-dark);
}
.logo-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.main-nav a {
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: all var(--transition);
}
.main-nav a:hover,
.main-nav .current-menu-item a,
.main-nav .current-page-ancestor a {
  color: var(--green-dark);
  background: var(--green-pale);
}

.nav-cta {
  background: var(--green-mid) !important;
  color: white !important;
  padding: 0.4rem 1rem !important;
}
.nav-cta:hover {
  background: var(--green-dark) !important;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--brown-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--cream-light);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav a { display: block; padding: 0.6rem 1.5rem; border-radius: 0; }
}

/* ═══════════════════════════════════════════════════════════════
   PAGE HERO BANNER (interior pages)
═══════════════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-mid) 50%, var(--green-dark) 100%);
  padding: 4rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse at 20% 50%, rgba(107,158,126,0.2) 0%, transparent 60%),
                    radial-gradient(ellipse at 80% 20%, rgba(196,135,74,0.15) 0%, transparent 50%);
}
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--cream-light); margin-bottom: 0.75rem; }
.page-hero p { color: var(--cream-dark); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }
.page-hero .section-label { color: var(--green-pale); }

/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE HERO
═══════════════════════════════════════════════════════════════ */
.hero {
  min-height: calc(90vh - var(--header-h));
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--brown-dark) 0%, #5c2d0e 40%, var(--green-dark) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 10% 80%, rgba(107,158,126,0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 10%, rgba(196,135,74,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.1) 0%, transparent 80%);
}
.hero::after {
  content: '🍄';
  position: absolute;
  font-size: 20rem;
  opacity: 0.04;
  right: -3rem;
  bottom: -3rem;
  line-height: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  max-width: 700px;
}
.hero h1 {
  color: var(--cream-light);
  margin-bottom: 1.25rem;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
}
.hero h1 em {
  font-style: normal;
  color: var(--brown-light);
}
.hero p {
  color: var(--cream-dark);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 500px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  color: var(--cream-dark);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

/* ═══════════════════════════════════════════════════════════════
   CARDS
═══════════════════════════════════════════════════════════════ */
.card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card-img { aspect-ratio: 4/3; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 1.5rem; }
.card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  display: block;
  margin-bottom: 0.4rem;
}
.card-title { font-size: 1.1rem; margin-bottom: 0.5rem; }
.card-text { font-size: 0.9rem; color: var(--text-light); }

/* Benefit cards */
.benefit-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--green-mid);
  transition: transform var(--transition), box-shadow var(--transition);
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.benefit-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--brown-dark); }
.benefit-card p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* Product cards */
.product-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-card-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.product-card-body { padding: 1.25rem; }
.product-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: var(--green-pale);
  color: var(--green-dark);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.product-card h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.product-card p { font-size: 0.85rem; color: var(--text-light); margin: 0; }

/* ═══════════════════════════════════════════════════════════════
   RECIPE CARDS
═══════════════════════════════════════════════════════════════ */
.recipe-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.recipe-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.recipe-card-img {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.recipe-card-body { padding: 1.5rem; }
.recipe-meta {
  display: flex;
  gap: 1rem;
  margin: 0.75rem 0;
  flex-wrap: wrap;
}
.recipe-meta-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: var(--text-light);
}
.recipe-card h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.recipe-card p { font-size: 0.875rem; color: var(--text-light); margin-bottom: 1rem; }

/* ═══════════════════════════════════════════════════════════════
   STAT / HIGHLIGHT BOXES
═══════════════════════════════════════════════════════════════ */
.stat-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brown-light);
  display: block;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label { font-size: 0.85rem; color: var(--cream-dark); }

/* Info strip */
.info-strip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: var(--green-pale);
  border-left: 4px solid var(--green-mid);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  color: var(--green-dark);
}

/* ═══════════════════════════════════════════════════════════════
   ACCORDION (FAQ / Shiitake facts)
═══════════════════════════════════════════════════════════════ */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.accordion-header {
  width: 100%;
  background: white;
  border: none;
  padding: 1.1rem 1.25rem;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}
.accordion-header:hover { background: var(--cream); }
.accordion-header.open { background: var(--cream); color: var(--green-dark); }
.accordion-icon { font-size: 1.2rem; transition: transform var(--transition); }
.accordion-header.open .accordion-icon { transform: rotate(45deg); }
.accordion-body {
  display: none;
  padding: 0 1.25rem 1.25rem;
  background: white;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.accordion-body.open { display: block; }

/* ═══════════════════════════════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════════════════════════════ */
.contact-form { max-width: 620px; margin: 0 auto; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(61,107,79,0.12);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════════
   SECTION HEADING
═══════════════════════════════════════════════════════════════ */
.section-head { margin-bottom: 3rem; }
.section-head.center { text-align: center; }
.section-head h2 { margin-bottom: 0.75rem; }
.section-head p { font-size: 1.05rem; max-width: 560px; }
.section-head.center p { margin: 0 auto; }

/* Decorative divider */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--green-mid), var(--brown-light));
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}
.section-head.center .divider { margin: 1rem auto 1.5rem; }

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIAL / QUOTE
═══════════════════════════════════════════════════════════════ */
.quote-block {
  border-left: 4px solid var(--brown-light);
  padding: 1.25rem 1.75rem;
  background: var(--cream);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 2rem 0;
}
.quote-block blockquote {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--brown-dark);
  margin-bottom: 0.5rem;
}
.quote-block cite { font-size: 0.8rem; color: var(--text-light); font-style: normal; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--brown-dark);
  color: var(--cream-dark);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .site-logo { margin-bottom: 1rem; }
.footer-brand .logo-name { color: var(--cream-light); }
.footer-brand .logo-tagline { color: rgba(255,255,255,0.5); }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--cream-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--cream-light); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════════
   FEATURED STRIP (used on homepage between sections)
═══════════════════════════════════════════════════════════════ */
.features-strip {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}
.features-strip-inner {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.feature-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-mid);
}
.feature-pill-icon { font-size: 1.3rem; }

/* ═══════════════════════════════════════════════════════════════
   GENERIC PAGE CONTENT
═══════════════════════════════════════════════════════════════ */
.page-content {
  padding: 4rem 0;
}
.page-content h2 { margin: 2.5rem 0 1rem; }
.page-content h3 { margin: 2rem 0 0.75rem; color: var(--green-dark); }
.page-content p { margin-bottom: 1rem; }
.page-content ul, .page-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-mid);
}
.page-content ul { list-style: disc; }
.page-content ol { list-style: decimal; }
.page-content li { margin-bottom: 0.35rem; }

/* ═══════════════════════════════════════════════════════════════
   OPERATIONS / EMPLOYEE LOGIN WALL
═══════════════════════════════════════════════════════════════ */
.login-wall {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brown-dark), var(--green-dark));
  padding: 2rem;
}
.login-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.login-card h2 { margin-bottom: 0.5rem; }
.login-card > p { margin-bottom: 2rem; font-size: 0.9rem; }
.login-card .btn { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE HELPERS
═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
}
@media (min-width: 769px) {
  .hide-desktop { display: none !important; }
}

/* ═══════════════════════════════════════════════════════════════
   WORDPRESS DEFAULTS (alignment, captions, etc.)
═══════════════════════════════════════════════════════════════ */
.wp-caption { max-width: 100%; }
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 0 auto 1rem; }
.screen-reader-text {
  clip: rect(1px,1px,1px,1px);
  height: 1px; width: 1px;
  overflow: hidden;
  position: absolute;
}
