/* ============================================================
   maiseyjhair llc — site stylesheet
   Theme: LIGHT with EMERALD-TEAL accent #10B981
   ============================================================ */

:root {
  --bg: #F4F8F4;
  --bg-tint: #EAF3EE;
  --bg-tint-2: #DFEFE6;
  --surface: #FFFFFF;
  --ink: #14211A;
  --ink-soft: #2C3A32;
  --ink-muted: #4C5B52;
  --line: #D6E5DC;
  --accent: #10B981;
  --accent-dark: #059669;
  --accent-deep: #047857;
  --accent-light: #34D399;
  --accent-pale: #D1F0E4;
  --rail: #065F46;
  --shadow: 0 12px 34px rgba(10, 60, 40, 0.08);
  --shadow-sm: 0 4px 14px rgba(10, 60, 40, 0.06);
  --radius: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--accent-dark);
  text-decoration: none;
}

h1, h2, h3, h4 {
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   HANGING TAG NAVIGATION
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--surface);
  box-shadow: var(--shadow-sm);
}

.nav-rail {
  height: 9px;
  background-color: var(--rail);
  position: relative;
}

.nav-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  padding-bottom: 16px;
}

.brand-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-pale);
}

.brand small {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-deep);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  list-style: none;
}

.nav-tag {
  position: relative;
  display: inline-block;
  padding: 9px 16px 11px;
  margin-top: 15px;
  background-color: var(--accent);
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 7px 7px 13px 13px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.nav-tag::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 15px;
  background-color: var(--accent);
  border-radius: 3px 3px 0 0;
}

.nav-tag:hover,
.nav-tag:focus-visible {
  background-color: var(--accent-dark);
  transform: translateY(-3px);
}

.nav-cta {
  display: inline-block;
  margin-bottom: 12px;
  padding: 12px 22px;
  background-color: var(--accent-deep);
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 999px;
  white-space: nowrap;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background-color: var(--rail);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  margin-bottom: 12px;
  width: 46px;
  height: 46px;
  border: 2px solid var(--accent);
  background-color: var(--surface);
  border-radius: 10px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--accent-deep);
  border-radius: 2px;
}

/* ============================================================
   HERO — WAVE CRESTS
   ============================================================ */
.hero {
  position: relative;
  background-color: var(--bg);
  overflow: hidden;
  padding: 88px 0 220px;
}

.hero-waves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.wave {
  position: absolute;
  left: 0;
  width: 100%;
}

.wave-a {
  bottom: -70px;
  height: 250px;
  left: -18%;
  width: 136%;
  border-radius: 50% 50% 0 0;
  background-color: var(--bg-tint-2);
}

.wave-b {
  bottom: -85px;
  height: 205px;
  left: 6%;
  width: 112%;
  border-radius: 50% 50% 0 0;
  background-color: var(--accent-light);
}

.wave-c {
  bottom: -70px;
  height: 150px;
  left: -8%;
  width: 128%;
  border-radius: 50% 50% 0 0;
  background-color: var(--accent);
}

.wave-crest {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 64px;
  background:
    radial-gradient(circle at 30px 0, var(--accent-dark) 38px, transparent 39px) 0 0 / 120px 64px repeat-x;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-eyebrow {
  display: inline-block;
  padding: 8px 16px;
  background-color: var(--accent-pale);
  color: var(--accent-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.9rem);
  max-width: 15ch;
  margin-bottom: 22px;
}

.hero h1 .accent {
  color: var(--accent-deep);
}

.hero-lede {
  max-width: 58ch;
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  transition: background-color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.btn-solid {
  background-color: var(--accent-deep);
  color: #FFFFFF;
}

.btn-solid:hover,
.btn-solid:focus-visible {
  background-color: var(--rail);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent-deep);
  border: 2px solid var(--accent);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background-color: var(--accent);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* ============================================================
   SHARED SECTION HELPERS
   ============================================================ */
.section {
  padding: 96px 0;
}

.section-alt {
  background-color: var(--bg-tint);
}

.section-dark {
  background-color: var(--ink);
  color: var(--bg);
}

.section-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  margin-bottom: 14px;
}

.section-desc {
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   INTRO STATEMENT ROW
   ============================================================ */
.intro-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

.intro-statement {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.intro-statement .accent {
  color: var(--accent-deep);
}

.intro-body {
  font-size: 1.08rem;
  color: var(--ink-muted);
}

.intro-body p + p {
  margin-top: 16px;
}

/* ============================================================
   SERVICES — NUMBERED LIST
   ============================================================ */
.services-section {
  background-color: var(--bg-tint);
}

.services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 2px solid var(--line);
}

.service-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 24px;
  padding: 34px 8px;
  border-bottom: 2px solid var(--line);
}

.service-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent-light);
  letter-spacing: -0.03em;
  line-height: 1;
}

.service-item h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.service-item p {
  color: var(--ink-muted);
  max-width: 70ch;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.compare-section {
  background-color: var(--surface);
}

.compare-wrap {
  overflow-x: auto;
  border: 2px solid var(--line);
  border-radius: var(--radius);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.compare-table th,
.compare-table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.compare-table thead th {
  background-color: var(--ink);
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 700;
}

.compare-table thead th.ours {
  background-color: var(--accent-deep);
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table td:first-child {
  font-weight: 700;
  color: var(--ink);
}

.check {
  color: var(--accent-deep);
  font-weight: 800;
}

.cross {
  color: #B91C1C;
  font-weight: 800;
}

/* ============================================================
   PROCESS — BIG NUMERALS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.process-step {
  background-color: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.process-step .big-num {
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.process-step h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.92rem;
  color: var(--ink-muted);
}

/* ============================================================
   METRICS
   ============================================================ */
.metrics-band {
  background-color: var(--ink);
  color: #FFFFFF;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.metric-value {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--accent-light);
  letter-spacing: -0.02em;
  line-height: 1;
}

.metric-label {
  margin-top: 8px;
  font-size: 0.95rem;
  color: #CDE8DC;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background-color: var(--surface);
  border: 1px solid var(--line);
  border-left: 5px solid var(--accent);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.testimonial-card blockquote {
  font-size: 1.02rem;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.testimonial-author {
  font-weight: 700;
  color: var(--ink);
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--ink-muted);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-section {
  background-color: var(--bg-tint);
}

.faq-list {
  max-width: 820px;
}

.faq-item {
  background-color: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
}

.faq-question .faq-icon {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: var(--accent);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 24px 22px;
  color: var(--ink-muted);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  background-color: var(--surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.contact-info p {
  color: var(--ink-muted);
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}

.contact-detail .cd-icon {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: var(--accent-pale);
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.contact-detail a {
  color: var(--ink);
  font-weight: 600;
}

.contact-form {
  background-color: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 2px solid var(--line);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
  background-color: var(--surface);
  transition: border-color 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
}

.form-status {
  margin-top: 16px;
  font-weight: 600;
  color: var(--accent-deep);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background-color: var(--accent-deep);
  color: #FFFFFF;
  text-align: center;
  padding: 80px 0;
}

.cta-band h2 {
  color: #FFFFFF;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  margin-bottom: 14px;
}

.cta-band p {
  color: #D7F5EA;
  max-width: 60ch;
  margin: 0 auto 28px;
}

.cta-band .btn-solid {
  background-color: #FFFFFF;
  color: var(--accent-deep);
}

.cta-band .btn-solid:hover {
  background-color: var(--accent-pale);
}

/* ============================================================
   FOOTER — WATERMARK WORDMARK
   ============================================================ */
.site-footer {
  position: relative;
  background-color: var(--ink);
  color: #CDE8DC;
  overflow: hidden;
}

.footer-watermark {
  position: absolute;
  right: -20px;
  bottom: -40px;
  font-size: clamp(6rem, 20vw, 15rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #1E3A2F;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.footer-top {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 72px 0 48px;
}

.footer-brand h3 {
  color: #FFFFFF;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.95rem;
  max-width: 34ch;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #CDE8DC;
  font-size: 0.92rem;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--accent-light);
}

.footer-bottom {
  position: relative;
  border-top: 1px solid #1E3A2F;
  padding: 22px 0 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: #CDE8DC;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--accent-light);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background-color: var(--surface);
    padding: 16px 24px 24px;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--rail);
  }

  .site-nav.nav-open .nav-links {
    display: flex;
  }

  .nav-tag {
    margin-top: 10px;
    text-align: center;
    border-radius: 8px;
  }

  .nav-tag::before {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-row {
    min-height: 66px;
  }

  .brand {
    padding-bottom: 12px;
  }

  .hero {
    padding: 56px 0 180px;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
