﻿/* â”€â”€ Design Tokens â”€â”€ */
:root {
  --rose:       #C8415A;
  --rose-dark:  #a83349;
  --rose-bg:    #FEF2F4;
  --ink:        #111111;
  --ink-mid:    #444444;
  --muted:      #6B7280;
  --line:       #E0E0E0;
  --white:      #FFFFFF;
  --off-white:  #F8F8F8;
  --dark:       #0A0A0A;
  --dark-2:     #141414;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Merriweather', Georgia, 'Times New Roman', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* â”€â”€ Layout â”€â”€ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
}

/* Backward-compat aliases */
.section-padding { padding: 5rem 0; }
.section { padding: 5rem 0; }
.section-sm { padding: 3.5rem 0; }

/* â”€â”€ Navigation â”€â”€ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 1.25rem;
  padding-top: env(safe-area-inset-top, 0);
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 56px;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 769px) {
  .nav { padding: 0 2rem; }
  .nav__inner { height: 68px; min-height: 68px; }
}
.nav__logo { flex-shrink: 0; }
.nav__logo svg { width: 140px; height: auto; }
@media (min-width: 769px) {
  .nav__logo svg { width: 190px; }
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  list-style: none;
}
.nav__links a {
  display: block;
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-mid);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav__links a:hover { color: var(--rose); background: var(--rose-bg); }
.nav__links a.active { color: var(--rose-dark); background: rgba(200, 65, 90, 0.14); font-weight: 600; }
.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.6rem 1.25rem;
  min-height: 44px;
  background: var(--rose);
  color: var(--white) !important;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}
.nav__cta:hover { background: var(--rose-dark) !important; transform: translateY(-1px); }
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.nav__hamburger:hover { background: var(--rose-bg); }
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: background 0.2s, transform 0.25s;
}
.nav__mobile {
  display: none;
  position: fixed;
  top: calc(56px + env(safe-area-inset-top, 0));
  left: 0; right: 0; bottom: 0;
  background: var(--white);
  padding: 1.5rem 1.25rem 2rem;
  padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0));
  flex-direction: column;
  gap: 0.25rem;
  z-index: 99;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 769px) {
  .nav__mobile { top: 68px; }
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.nav__mobile a:hover { background: var(--rose-bg); color: var(--rose); }
.nav__mobile a.active { background: var(--rose-bg); color: var(--rose); font-weight: 600; }
.nav__mobile .nav__cta {
  margin-top: 0.75rem;
  justify-content: center;
  min-height: 52px;
  font-size: 1rem;
}

/* â”€â”€ Breadcrumb â”€â”€ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  padding: 1rem 0 0;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb__sep { opacity: 0.3; }
.breadcrumb--light { color: #6B7280; }
.breadcrumb--light a { color: #4B5563; }
.breadcrumb--light a:hover { color: var(--ink); }

/* â”€â”€ Buttons â”€â”€ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--rose);
  color: var(--white);
  border-radius: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--rose-dark); transform: translateY(-1px); }
.btn-primary.text-lg { font-size: 1rem; padding: 1rem 2.25rem; }

/* â”€â”€ Page Hero (inner pages) â”€â”€ */
.page-hero {
  padding: 8rem 0 4.5rem;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(200,65,90,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0.75rem 0 1rem;
}
.page-hero p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.55);
  max-width: 54ch;
  line-height: 1.75;
  margin-bottom: 1.75rem;
}
/* main.pt-24 already clears fixed nav */
main.inner-page > .page-hero { padding-top: 4rem; padding-bottom: 4rem; }
.page-hero .t-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  display: block;
}

/* â”€â”€ Section Labels â”€â”€ */
.t-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  display: block;
  margin-bottom: 0.75rem;
}

/* â”€â”€ Section Headings â”€â”€ */
.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.section-heading-white { color: var(--white); }
.section-heading-rose {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--rose);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.bg-rose-tint { background-color: var(--rose-bg) !important; }

/* â”€â”€ Opportunity Card (service/category pages) â”€â”€ */
.opportunity-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 2rem;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}
.opportunity-card:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,0.07);
  border-color: rgba(200,65,90,0.25);
  transform: translateY(-3px);
}

/* â”€â”€ Icon Circle â”€â”€ */
.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--rose-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

/* â”€â”€ Earning / Stat Card â”€â”€ */
.earning-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
}
.earning-card .stat-number,
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--rose);
  line-height: 1;
  display: block;
  margin-bottom: 0.375rem;
}

/* â”€â”€ Testimonial Card â”€â”€ */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 2rem;
}
.profile-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--rose-bg);
}

/* â”€â”€ Form â”€â”€ */
.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  min-height: 48px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: 16px; /* Prevents iOS zoom on focus */
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder { color: #9CA3AF; }
.form-input:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(200,65,90,0.08);
}
textarea.form-input { resize: vertical; min-height: 120px; }

/* â”€â”€ Scroll Animations â”€â”€ */
/* Visible by default â€” compiled Tailwind has no scroll-reveal; opacity:0 hid entire inner pages */
.fade-in,
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.65s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
}
.fade-in.visible,
.fade-in.is-visible,
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1, .fade-in-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2, .fade-in-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3, .fade-in-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* â”€â”€ FAQ Accordion â”€â”€ */
.faq-section {}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-sans);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--rose); }

/* â”€â”€ Opacity / slash utilities missing from compiled tailwind.css (hero + CTAs) â”€â”€ */
.bg-white\/20 { background-color: rgba(255,255,255,0.22) !important; }
.bg-white\/95 { background-color: rgba(255,255,255,0.95) !important; }
.backdrop-blur-sm {
  --tw-backdrop-blur: blur(4px);
  -webkit-backdrop-filter: var(--tw-backdrop-blur);
  backdrop-filter: var(--tw-backdrop-blur);
}
.text-white\/92 { color: rgba(255,255,255,0.92) !important; }
.text-white\/90 { color: rgba(255,255,255,0.9) !important; }
.text-white\/85 { color: rgba(255,255,255,0.85) !important; }
.text-white\/80 { color: rgba(255,255,255,0.8) !important; }
.text-white\/75 { color: rgba(255,255,255,0.75) !important; }
.text-white\/70 { color: rgba(255,255,255,0.7) !important; }

/* Inner-page hero title â€” matches homepage serif scale */
.inner-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.35rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 28px rgba(0,0,0,0.45), 0 1px 2px rgba(0,0,0,0.35);
}
.inner-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}
.inner-hero__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--rose);
  border-radius: 1px;
}

/* â”€â”€ Shared inner-page blocks (lifestyle-style category & long-form pages) â”€â”€ */
.inner-page .page-gig-card { padding: 0 !important; overflow: hidden; display: flex; flex-direction: column; height: 100%; }
.inner-page .page-gig-card__img { aspect-ratio: 16/10; width: 100%; object-fit: cover; display: block; }
.inner-page .page-gig-card__body { padding: 1.75rem 2rem 2rem; flex: 1; display: flex; flex-direction: column; }
.inner-page .page-gig-card .icon-circle { margin-left: auto; margin-right: auto; }
.inner-page .page-demand .opportunity-card { text-align: center; }
.inner-page .page-demand .icon-circle { margin-left: auto; margin-right: auto; }
.inner-page .page-faq__item { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: var(--white); }
.inner-page .page-faq__toggle {
  width: 100%; text-align: left; padding: 1.125rem 1.25rem; font-size: 0.9375rem; font-weight: 600; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: background 0.2s; font-family: var(--font-sans);
}
.inner-page .page-faq__toggle:hover { background: var(--rose-bg); color: var(--rose); }
.inner-page .page-faq__panel { padding: 0 1.25rem 1.125rem; border-top: 1px solid var(--line); }
.inner-page .page-faq__panel p { font-size: 0.9375rem; color: var(--ink-mid); line-height: 1.75; padding-top: 0.75rem; }
.inner-page .page-explore__link {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 1.125rem 1.25rem; border: 1px solid var(--line); border-radius: 10px;
  background: var(--white); font-weight: 600; font-size: 0.9375rem; color: var(--rose);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.inner-page .page-explore__link:hover {
  border-color: rgba(200,65,90,0.28); box-shadow: 0 4px 18px rgba(0,0,0,0.06); transform: translateY(-2px);
}

/* â”€â”€ Tailwind Color Overrides (normalize inner page colors to rose) â”€â”€ */
.text-pink-500 { color: #C8415A !important; }
.text-pink-600 { color: #C8415A !important; }
.text-pink-700 { color: #a83349 !important; }
.text-pink-100 { color: #fce7f3 !important; }
.text-green-500 { color: #22c55e !important; }
.text-green-600 { color: #16a34a !important; }
.hover\:text-pink-700:hover { color: #a83349 !important; }
.bg-pink-50 { background-color: #FEF2F4 !important; }
.bg-pink-100 { background-color: #FCE4EA !important; }
.border-pink-300 { border-color: #F2A0AE !important; }
.hover\:border-pink-300:hover { border-color: #F2A0AE !important; }
.hover\:bg-pink-50:hover { background-color: #FEF2F4 !important; }
.hover\:bg-pink-100:hover { background-color: #FCE4EA !important; }
/* Inner page gradient CTAs â†’ solid rose */
.bg-gradient-to-r.from-pink-600 {
  background: var(--rose) !important;
  background-image: none !important;
}
.from-pink-50 { --tw-gradient-from: #FEF2F4 !important; }
.to-purple-50 { --tw-gradient-to: #F8F4FF !important; }

/* â”€â”€ Missing Tailwind Utilities â”€â”€ */
.flex-shrink-0 { flex-shrink: 0; }
.flex-grow { flex-grow: 1; }
.border-l-2 { border-left-width: 2px; }
.border-l-4 { border-left-width: 4px; }
.divide-y > * + * { border-top-width: 1px; border-top-style: solid; }
.divide-gray-100 > * + * { border-top-color: #F3F4F6; }
.divide-gray-200 > * + * { border-top-color: #E5E7EB; }
.mt-0\.5 { margin-top: 0.125rem; }
.hidden { display: none !important; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

/* â”€â”€ Footer (shared inner pages) â”€â”€ */
.footer {
  background: var(--dark);
  padding: 4rem 0 2rem;
  padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0));
  color: rgba(255,255,255,0.4);
}
@media (min-width: 769px) {
  .footer { padding: 5rem 0 2.5rem; }
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__brand svg { width: 140px; height: auto; }
@media (min-width: 769px) {
  .footer__brand svg { width: 190px; }
}
.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.66);
  margin: 1.25rem 0 1.5rem;
  max-width: 28ch;
}
.footer__social { display: flex; gap: 0.625rem; }
.footer__social a {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.76);
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.footer__social a:hover { background: var(--rose); color: var(--white); }
.footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin-bottom: 1rem;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 0; }
.footer__links a {
  display: flex;
  align-items: center;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.76);
  padding: 0.5rem 0;
  min-height: 44px;
  line-height: 1.5;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.56);
}
.footer__bottom a {
  color: rgba(255,255,255,0.78);
  padding: 0.25rem 0;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.footer__bottom a:hover { color: rgba(255,255,255,0.96); }

/* â”€â”€ Prose (rich text sections) â”€â”€ */
.prose h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin: 2.5rem 0 0.875rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.prose h3 {
  font-family: var(--font-serif);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--ink);
  margin: 1.75rem 0 0.625rem;
  line-height: 1.35;
}
.prose p { font-size: 1rem; color: #4B5563; line-height: 1.8; margin-bottom: 1rem; }
.prose ul { padding-left: 1.375rem; margin-bottom: 1rem; }
.prose li { font-size: 1rem; color: #4B5563; line-height: 1.8; margin-bottom: 0.375rem; }
.prose li::marker { color: var(--rose); }

/* â”€â”€ Responsive â”€â”€ */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  main.pt-24 { padding-top: 4.5rem; } /* Clear 56px nav with buffer */
  .nav__links { display: none; }
  .nav__cta:not(.nav__mobile .nav__cta) { display: none; }
  .nav__hamburger { display: flex; }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .footer__brand p { max-width: 100%; margin: 1rem 0 1.25rem; }
  .footer__bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
    padding: 0 1rem;
  }
  .container { padding: 0 1.25rem; }
  .section-padding, .section { padding: 3.5rem 0; }
  .page-hero { padding: 5rem 0 3rem; }
  .page-hero h1 { font-size: clamp(1.5rem, 6vw, 2rem); }
}
@media (max-width: 480px) {
  .footer { padding: 3rem 0 1.5rem; }
  .footer__grid { gap: 2rem; margin-bottom: 2rem; padding-bottom: 2rem; }
  .footer__col-title { font-size: 0.8125rem; }
  .section-padding, .section { padding: 2.5rem 0; }
}

/* â”€â”€ SR only â”€â”€ */
.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;
}
