/* ============================================================
   TRANSITION WITH WINNIE â€” MAIN STYLESHEET
   Mobile-first, fully responsive
   Palette: Beyond Navy Â· Reddish Cashew Â· Old Lace Â· Light Black
   Typography: DM Serif Display (display) + Plus Jakarta Sans (body)
   ============================================================ */

:root {
  --navy:        #191446;
  --navy-light:  #2a2268;
  --coral:       #F37E6A;
  --coral-light: #f9a898;
  --ivory:       #FDF3E7;
  --ivory-dark:  #F5E9D6;
  --charcoal:    #2D2D2D;
  --muted:       #6B6B6B;
  --white:       #FFFFFF;
  --danger:      #C0392B;
  --success:     #27AE60;

  /* Legacy aliases so inline page styles still work */
  --forest:      #191446;
  --forest-light:#2a2268;
  --gold:        #F37E6A;
  --gold-light:  #f9a898;

  --font-display:'DM Serif Display', Georgia, serif;
  --font-body:   'Plus Jakarta Sans', system-ui, sans-serif;

  --radius:      6px;
  --radius-lg:   16px;
  --shadow:      0 4px 24px rgba(25,20,70,.10);
  --shadow-lg:   0 16px 56px rgba(25,20,70,.15);
  --nav-h:       76px;
}

/* â”€â”€ RESET â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.75;
  overflow-x: hidden;
  font-size: 16px;
}
img { max-width: 100%; display: block; height: auto; }
a   { color: var(--navy); text-decoration: none; }
ul  { list-style: none; padding: 0; margin: 0; }
input, textarea, select, button { font-family: inherit; font-size: 16px; }

/* â”€â”€ TYPOGRAPHY â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
h1,h2,h3,h4,h5 { font-family: var(--font-display); line-height: 1.2; color: var(--navy); }

h1 { font-size: 2.2rem; font-weight: 400; letter-spacing: -.5px; }
h2 { font-size: 1.8rem; font-weight: 400; }
h3 { font-size: 1.35rem; font-weight: 400; }
h4 { font-size: 1rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; font-family: var(--font-body); }
p  { font-size: 1rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.8; }
em { font-style: italic; color: var(--coral); }

@media (min-width: 768px) {
  html { font-size: 17px; }
  h1 { font-size: 3.4rem; }
  h2 { font-size: 2.6rem; }
  h3 { font-size: 1.75rem; }
  h4 { font-size: 1.05rem; }
  p  { font-size: 1.05rem; }
}
@media (min-width: 1024px) {
  html { font-size: 18px; }
  h1 { font-size: clamp(3.4rem, 5vw, 5.2rem); }
  h2 { font-size: clamp(2.4rem, 3.5vw, 3.4rem); }
  h3 { font-size: clamp(1.6rem, 2vw, 2.1rem); }
  h4 { font-size: 1.1rem; }
  p  { font-size: 1.1rem; }
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .78rem; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--coral); margin-bottom: .75rem;
}
@media (min-width: 1024px) { .section-label { font-size: .82rem; } }
.section-label::before { content: '\2014\00A0'; }

/* â”€â”€ LAYOUT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.section   { padding: 60px 0; }
@media (min-width: 768px)  { .section { padding: 80px 0; } }
@media (min-width: 1024px) { .section { padding: 100px 0; } }

.section--dark  { background: var(--navy); }
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--ivory); }
.section--dark p  { color: rgba(253,243,231,.7); }
.section--cream { background: var(--ivory-dark); }

/* â”€â”€ NAVBAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
  height: var(--nav-h);
  transition: background .3s, box-shadow .3s;
  background: linear-gradient(180deg, rgba(25,20,70,.75) 0%, transparent 100%);
}
.navbar.scrolled {
  background: rgba(253,243,231,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(25,20,70,.1);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 20px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}

/* Logo â€” SVG versions */
.nav-logo { display: flex; align-items: center; }
.nav-wordmark { height: 64px; width: auto; display: block; max-width: 180px; }
.nav-wordmark--light { display: block; }
.nav-wordmark--dark  { display: none; }
.navbar.scrolled .nav-wordmark--light { display: none; }
.navbar.scrolled .nav-wordmark--dark  { display: block; }

/* Hamburger */
.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 10px;
  -webkit-tap-highlight-color: transparent;
  position: relative; z-index: 9001;
  min-width: 44px; min-height: 44px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--ivory); border-radius: 2px; transition: .3s;
}
.navbar.scrolled .nav-toggle span { background: var(--navy); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav drawer */
.nav-links {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  height: calc(100dvh - var(--nav-h));
  background: var(--ivory);
  flex-direction: column;
  padding: 24px 20px 40px; gap: 0;
  overflow-y: auto;
  z-index: 9002; /* above navbar */
  -webkit-overflow-scrolling: touch;
}
.nav-links.open { display: flex; }
.nav-links a {
  font-size: 1.05rem; font-weight: 400; color: var(--charcoal);
  padding: 16px 0; border-bottom: 1px solid rgba(25,20,70,.08);
  transition: color .2s; display: block;
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); font-weight: 600; }

/* CTA pill in mobile menu */
.nav-links .nav-cta {
  margin-top: 20px; border-bottom: none !important;
  background: var(--coral) !important;
  color: var(--white) !important;
  text-align: center; border-radius: 50px;
  padding: 14px 24px !important;
  font-weight: 600;
}

/* Desktop nav */
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav-links {
    display: flex !important; position: static;
    flex-direction: row; align-items: center;
    background: none; padding: 0; gap: 4px;
    overflow: visible; top: auto; bottom: auto;
  }
  .nav-links a {
    font-size: .82rem; font-weight: 500;
    padding: 8px 12px; border: none;
    color: rgba(253,243,231,.85);
    letter-spacing: .2px;
  }
  .nav-links a:hover { color: var(--ivory) !important; }
  .nav-links a.active { color: var(--ivory) !important; }
  .nav-links a.active::after {
    content: ''; display: block; height: 2px;
    background: var(--coral); border-radius: 2px; margin-top: 2px;
  }
  .navbar.scrolled .nav-links a { color: var(--charcoal) !important; }
  .navbar.scrolled .nav-links a:hover { color: var(--navy) !important; }
  .navbar.scrolled .nav-links a.active { color: var(--navy) !important; }

  .nav-links .nav-cta {
    background: var(--coral) !important;
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: .82rem !important;
    transition: background .2s, transform .15s !important;
    margin-left: 8px;
  }
  .nav-links .nav-cta:hover { background: #e06d59 !important; transform: translateY(-1px); }
  .navbar.scrolled .nav-links .nav-cta { color: var(--white) !important; }
}

/* â”€â”€ PAGE HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.page-hero {
  background: var(--navy);
  padding: calc(var(--nav-h) + 48px) 0 56px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 120%, rgba(243,126,106,.18), transparent),
    radial-gradient(ellipse 40% 40% at 80% 10%, rgba(243,126,106,.08), transparent);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--ivory); }
.page-hero p  { color: rgba(253,243,231,.65); max-width: 520px; margin: 0 auto; }

/* â”€â”€ HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 80% 70% at 70% 50%, rgba(243,126,106,.12), transparent),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(243,126,106,.07), transparent),
    radial-gradient(ellipse 30% 40% at 90% 10%, rgba(253,243,231,.05), transparent);
}
/* Subtle butterfly pattern overlay */
.hero-grid::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' opacity='0.04'%3E%3Cpath fill='%23F37E6A' d='M60 30 C55 20 45 18 42 25 C38 33 44 42 52 44 C46 50 44 58 48 63 C52 68 58 66 60 60 C62 66 68 68 72 63 C76 58 74 50 68 44 C76 42 82 33 78 25 C75 18 65 20 60 30Z'/%3E%3C/svg%3E");
  background-size: 120px 120px;
}
.hero-inner {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  max-width: 1160px; margin: 0 auto; padding: calc(var(--nav-h) + 48px) 20px 48px;
  gap: 40px;
  position: relative; z-index: 1;
}
@media (min-width: 900px) {
  .hero-inner { flex-direction: row; align-items: center; gap: 60px; padding-bottom: 80px; }
}
.hero-content { flex: 1; }
.hero-eyebrow {
  display: inline-block; font-size: .72rem; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--coral); margin-bottom: 18px;
}
.hero-content h1 { color: var(--ivory); margin-bottom: 20px; }
.hero-content h1 span { color: var(--coral); display: block; }
.hero-desc {
  color: rgba(253,243,231,.72); font-size: 1.05rem;
  max-width: 520px; margin-bottom: 36px; line-height: 1.8;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Hero photo â€” shown when photo is provided */
.hero-photo {
  flex: 0 0 auto; width: 100%; max-width: 420px;
  border-radius: 20px; overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
  box-shadow: 0 24px 64px rgba(25,20,70,.4);
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
}
.hero-photo-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--coral); color: var(--white);
  padding: 10px 16px; border-radius: 50px;
  font-size: .75rem; font-weight: 700; letter-spacing: .5px;
}
/* Fallback card when no photo */
.hero-visual { flex: 0 0 auto; width: 100%; max-width: 380px; }
.hero-card {
  background: rgba(253,243,231,.07);
  border: 1px solid rgba(253,243,231,.12);
  border-radius: var(--radius-lg); padding: 28px;
  backdrop-filter: blur(10px);
}
.hero-card-title { font-family: var(--font-display); font-size: 1.25rem; color: var(--ivory); margin-bottom: 4px; }
.hero-card-sub   { font-size: .8rem; color: rgba(253,243,231,.5); margin-bottom: 20px; }
.hero-services-list { display: flex; flex-direction: column; gap: 4px; }
.hero-service-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px;
  transition: background .2s; color: rgba(253,243,231,.75); font-size: .85rem;
}
.hero-service-item:hover { background: rgba(253,243,231,.07); color: var(--ivory); }
.hero-service-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); flex-shrink: 0; }

/* Hero stats bar */
.hero-stats {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 0; background: rgba(253,243,231,.06);
  border-top: 1px solid rgba(253,243,231,.08);
  position: relative; z-index: 1;
}
.stat-item {
  flex: 1; min-width: 120px; text-align: center;
  padding: 22px 16px;
  border-right: 1px solid rgba(253,243,231,.08);
}
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-display); font-size: 2rem; color: var(--coral); font-weight: 400; }
.stat-label  { font-size: .72rem; color: rgba(253,243,231,.5); letter-spacing: .5px; text-transform: uppercase; margin-top: 3px; }

/* â”€â”€ BUTTONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 28px; border-radius: 50px;
  font-family: var(--font-body); font-size: .875rem; font-weight: 600;
  letter-spacing: .2px; cursor: pointer; border: none;
  transition: all .2s; text-decoration: none; line-height: 1;
  white-space: nowrap;
}
.btn-primary  { background: var(--coral); color: var(--white); }
.btn-primary:hover { background: #e06d59; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(243,126,106,.35); }
.btn-dark     { background: var(--navy); color: var(--ivory); }
.btn-dark:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-outline  { background: transparent; color: var(--ivory); border: 1.5px solid rgba(253,243,231,.4); }
.btn-outline:hover { border-color: var(--ivory); background: rgba(253,243,231,.08); }
.btn-ghost    { background: transparent; color: var(--navy); border: 1.5px solid rgba(25,20,70,.2); }
.btn-ghost:hover { border-color: var(--navy); background: rgba(25,20,70,.05); }
.btn-sm       { padding: 9px 20px; font-size: .8rem; }
.btn-full     { width: 100%; }

/* â”€â”€ SERVICES GRID â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.services-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 640px)  { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px 24px; border: 1px solid rgba(25,20,70,.07);
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
@media (min-width: 768px) {
  .service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
}
.service-icon { font-size: 2.2rem; margin-bottom: 14px; display:flex; align-items:center; line-height:1; }
.service-icon svg { width: 36px; height: 36px; flex-shrink: 0; }
.service-tag  {
  font-size: .65rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--coral); margin-bottom: 8px;
}
.service-card h3 { font-size: 1.25rem; margin-bottom: 6px; color: var(--navy); }
.price  { font-family: var(--font-display); font-size: 1.5rem; color: var(--coral); margin-bottom: 12px; }
.service-card p { font-size: .875rem; flex: 1; }
.service-card .btn { margin-top: 16px; align-self: flex-start; }

/* â”€â”€ HOW IT WORKS STEPS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.steps-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(6, 1fr); } }

.step-item { text-align: center; }
.step-num  {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(243,126,106,.15); color: var(--coral);
  font-family: var(--font-display); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  border: 1.5px solid rgba(243,126,106,.3);
}
.step-item h4 { font-size: .85rem; margin-bottom: 6px; }
.step-item p  { font-size: .78rem; color: rgba(253,243,231,.6); margin: 0; }

/* â”€â”€ TESTIMONIALS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.testimonials-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 640px)  { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: rgba(253,243,231,.06);
  border: 1px solid rgba(253,243,231,.1);
  border-radius: var(--radius-lg); padding: 28px;
}
.testimonial-card.featured {
  background: rgba(243,126,106,.1);
  border-color: rgba(243,126,106,.2);
}
.testimonial-stars { color: var(--coral); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-family: var(--font-display); font-size: 1.05rem; font-style: italic;
  color: var(--ivory); line-height: 1.65; margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--coral); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem; flex-shrink: 0;
}
.testimonial-name  { font-size: .875rem; font-weight: 600; color: var(--ivory); }
.testimonial-title { font-size: .75rem; color: rgba(253,243,231,.5); }

/* â”€â”€ ABOUT SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.about-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px;
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: center; }
}
.about-photo {
  aspect-ratio: 3/4; max-height: 500px;
  background: var(--ivory-dark); border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: var(--navy); position: relative; overflow: hidden;
}
.about-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
}
@media (min-width: 768px) { .about-photo { max-height: none; } }
.about-photo::after {
  content: '10 years\nHR Experience'; white-space: pre; text-align: center;
  position: absolute; bottom: 14px; right: 14px;
  background: var(--coral); color: var(--white);
  padding: 10px 14px; border-radius: 50px;
  font-family: var(--font-body); font-size: .72rem; font-weight: 700; line-height: 1.4;
}
.about-photo.has-photo::after { display: none; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.value-item  { padding: 12px; background: var(--ivory-dark); border-radius: var(--radius); border-left: 3px solid var(--coral); }
.value-item h4 { font-size: .82rem; margin-bottom: 2px; }
.value-item p  { font-size: .75rem; margin: 0; }

/* â”€â”€ BLOG â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 580px)  { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid rgba(25,20,70,.07);
  transition: transform .3s, box-shadow .3s;
}
@media (min-width: 768px) {
  .blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
}
.blog-card-img  { height: 170px; background: var(--ivory-dark); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.blog-card-body { padding: 18px 18px 0; }
.blog-cat       { font-size: .68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--coral); font-weight: 600; margin-bottom: 6px; }
.blog-card-body h3 { font-size: 1.05rem; margin-bottom: 7px; }
.blog-card-body p  { font-size: .84rem; }
.blog-card-footer  { padding: 0 18px 18px; display: flex; justify-content: space-between; align-items: center; font-size: .77rem; color: var(--muted); }

/* â”€â”€ CONTACT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; } }

.contact-info-item { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.contact-icon {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: rgba(243,126,106,.12);
  display: flex; align-items: center; justify-content: center; color: var(--coral);
}
.contact-info-item h4 { font-size: .85rem; margin-bottom: 2px; }
.contact-info-item p  { font-size: .85rem; margin: 0; }

/* â”€â”€ FORMS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: .8rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: 6px; letter-spacing: .2px;
}
.form-group label span { color: var(--coral); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid rgba(25,20,70,.15); border-radius: var(--radius);
  background: var(--white); color: var(--charcoal);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(243,126,106,.12);
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; gap: 16px; } }

/* â”€â”€ ALERTS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 18px; font-size: .875rem; line-height: 1.5; }
.alert-success { background: #e8f5e9; color: var(--success); border: 1px solid #c8e6c9; }
.alert-error   { background: #fdecea; color: var(--danger); border: 1px solid #ffcdd2; }
.alert-info    { background: rgba(243,126,106,.08); color: var(--navy); border: 1px solid rgba(243,126,106,.2); }

/* â”€â”€ POLICY PAGES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.policy-content { max-width: 740px; margin: 0 auto; }
.policy-content h2 { font-size: 1.5rem; margin: 36px 0 12px; }
.policy-content h3 { font-size: 1.1rem; margin: 22px 0 8px; }
.policy-content p,
.policy-content li { font-size: .925rem; color: var(--charcoal); }
.policy-content ul { padding-left: 20px; list-style: disc; margin-bottom: 12px; }
.policy-content ul li { margin-bottom: 6px; }

/* â”€â”€ UTILITIES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.text-center   { text-align: center; }
.text-coral    { color: var(--coral); }
.text-gold     { color: var(--coral); } /* alias */
.mb-0          { margin-bottom: 0 !important; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }
.divider       { width: 48px; height: 3px; background: var(--coral); margin: 18px 0; border-radius: 2px; }
.divider-center{ margin-left: auto; margin-right: auto; }
.badge         { display: inline-block; padding: 4px 10px; border-radius: 20px; font-size: .7rem; font-weight: 600; letter-spacing: .5px; }
.badge-green   { background: #e8f5e9; color: var(--success); }
.badge-gold    { background: rgba(243,126,106,.12); color: #b85040; }
.badge-red     { background: #fdecea; color: var(--danger); }
.badge-grey    { background: var(--ivory-dark); color: var(--muted); }

/* â”€â”€ ADMIN â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.admin-layout  { display: grid; grid-template-columns: 220px 1fr; min-height: 100vh; }
.admin-sidebar { background: var(--navy); color: var(--ivory); position: sticky; top: 0; height: 100vh; overflow-y: auto; }
.admin-sidebar-logo { padding: 22px 20px; border-bottom: 1px solid rgba(253,243,231,.1); }
.admin-sidebar-logo .logo-main { font-family: var(--font-display); font-size: 1.1rem; color: var(--ivory); }
.admin-sidebar-logo .logo-sub  { font-family: var(--font-display); font-size: .75rem; color: var(--coral); font-style: italic; }
.admin-nav { padding: 10px 0; }
.admin-nav a { display: flex; align-items: center; gap: 10px; padding: 12px 20px; color: rgba(253,243,231,.7); font-size: .85rem; transition: all .2s; }
.admin-nav a:hover,
.admin-nav a.active { background: rgba(243,126,106,.12); color: var(--ivory); border-right: 2px solid var(--coral); }
.admin-nav a svg { flex-shrink: 0; }
.admin-main    { background: #F5F0EB; padding: 24px 16px; overflow-y: auto; }
@media (min-width: 768px) { .admin-main { padding: 36px; } }
.admin-header  { margin-bottom: 24px; }
.admin-header h1 { font-size: 1.7rem; }
.admin-header p  { font-size: .875rem; }
.stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 24px; }
@media (min-width: 900px) { .stats-row { grid-template-columns: repeat(4,1fr); } }
.stat-card { background: var(--white); border-radius: var(--radius-lg); padding: 18px; border: 1px solid rgba(25,20,70,.08); }
.stat-card .num { font-family: var(--font-display); font-size: 1.9rem; font-weight: 400; color: var(--navy); }
.stat-card .lbl { font-size: .75rem; color: var(--muted); margin-top: 3px; }
.data-table { width: 100%; background: var(--white); border-radius: var(--radius-lg); overflow: auto; border: 1px solid rgba(25,20,70,.08); }
.data-table table { width: 100%; border-collapse: collapse; min-width: 560px; }
.data-table thead th { background: var(--navy); color: var(--ivory); padding: 12px 14px; text-align: left; font-size: .72rem; letter-spacing: .5px; text-transform: uppercase; font-weight: 600; white-space: nowrap; }
.data-table tbody td { padding: 12px 14px; font-size: .84rem; border-bottom: 1px solid rgba(25,20,70,.06); vertical-align: middle; }
.data-table tbody tr:hover { background: var(--ivory); }
.data-table tbody tr:last-child td { border-bottom: none; }
.admin-card { background: var(--white); border-radius: var(--radius-lg); padding: 20px; border: 1px solid rgba(25,20,70,.08); margin-bottom: 18px; }
@media (min-width: 640px) { .admin-card { padding: 28px; } }
.admin-card h2 { font-size: 1.25rem; margin-bottom: 16px; }

@media (max-width: 767px) {
  .data-table { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .data-table table { min-width: 540px; }
  .stat-grid { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
  .admin-card { padding: 16px; }
  .form-row { grid-template-columns: 1fr !important; }
}

/* â”€â”€ ANIMATIONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes fadeUp  { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.fade-up   { animation: fadeUp .7s ease both; }
.fade-up-2 { animation: fadeUp .7s .15s ease both; }
.fade-up-3 { animation: fadeUp .7s .3s ease both; }

/* â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-footer { background: var(--navy); padding: 56px 0 0; }
.site-footer a { text-decoration: none; }
.footer-grid {
  max-width: 1160px; margin: 0 auto;
  padding: 0 20px 44px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding: 0 32px 52px; }
}
.footer-brand-col { grid-column: 1 / -1; }
@media (min-width: 768px) { .footer-brand-col { grid-column: auto; } }
.footer-logo-img { height: 90px; width: auto; margin-bottom: 18px; }
.footer-logo-text { font-family: var(--font-display); font-size: 1.45rem; font-weight: 400; color: var(--ivory); margin-bottom: 7px; line-height: 1.2; }
.footer-logo-text em { font-style: italic; color: var(--coral); }
.footer-tagline-text { font-size: .84rem; color: rgba(253,243,231,.45); margin-bottom: 22px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(253,243,231,.15); display: flex; align-items: center; justify-content: center; color: rgba(253,243,231,.55); transition: border-color .2s, color .2s; }
.footer-socials a:hover { border-color: var(--coral); color: var(--coral); }
.footer-link-col {}
.footer-col-heading { font-family: var(--font-body); font-size: .67rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--coral); margin-bottom: 16px; display: block; }
.footer-link-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-link-col ul li a { font-size: .875rem; color: rgba(253,243,231,.55); transition: color .2s; }
.footer-link-col ul li a:hover { color: var(--ivory); }
.footer-hours-text { font-size: .75rem; color: rgba(253,243,231,.35); margin-top: 22px; padding-top: 16px; border-top: 1px solid rgba(253,243,231,.08); line-height: 1.8; }
.footer-bar { border-top: 1px solid rgba(253,243,231,.08); padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bar p { font-size: .75rem; color: rgba(253,243,231,.3); margin: 0; }