/* The Muscle Maid — Brand Stylesheet
   Colors: Soft Blush #FFEECE, Maid Pink #F7B9C5, Rose Dust #E7A1B1, Clean Black #111111, Clean White #FFFFFF
   Fonts: Playfair Display (logo/display), Montserrat (headings/body)
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  --soft-blush: #FFEECE;
  --maid-pink: #F7B9C5;
  --rose-dust: #E7A1B1;
  --rose-deep: #D88A9C;
  --clean-black: #111111;
  --clean-white: #FFFFFF;
  --text-muted: #4a4a4a;
  --bg-light-pink: #FFF5F7;
  --shadow-soft: 0 8px 24px rgba(231, 161, 177, 0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: var(--clean-black);
  background: var(--clean-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
.site-header {
  background: var(--clean-white);
  border-bottom: 1px solid #f3e3e8;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.brand-logo img { height: 56px; width: auto; }

.main-nav {
  display: flex;
  gap: 36px;
  align-items: center;
}

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clean-black);
  transition: color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--rose-deep);
}

.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
}

.btn-primary {
  background: var(--maid-pink);
  color: var(--clean-black);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: var(--rose-dust);
  transform: translateY(-1px);
}

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

.btn-outline:hover {
  background: var(--clean-black);
  color: var(--clean-white);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--bg-light-pink) 0%, var(--soft-blush) 100%);
  padding: 80px 0 100px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.hero h1 .accent {
  font-style: italic;
  color: var(--rose-deep);
  font-weight: 700;
}

.hero p.lead {
  font-size: 17px;
  color: var(--text-muted);
  margin: 18px 0 32px;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(216, 138, 156, 0.28);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== SECTION BASICS ===== */
section { padding: 80px 0; }

.section-heading {
  text-align: center;
  margin-bottom: 56px;
}

.section-heading .eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 14px;
}

.section-heading h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 12px;
}

.section-heading p {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* ===== SERVICE CARDS (Home) ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--clean-white);
  border: 1px solid #f3e3e8;
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.service-card .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  background: var(--soft-blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 18px;
}

.service-card .learn {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--rose-deep);
  border-bottom: 2px solid var(--maid-pink);
  padding-bottom: 2px;
}

/* ===== FEATURE STRIP ===== */
.features {
  background: var(--bg-light-pink);
}

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

.feature {
  text-align: center;
}

.feature .icon {
  width: 56px;
  height: 56px;
  background: var(--clean-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 14px;
  box-shadow: var(--shadow-soft);
}

.feature h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.feature p {
  color: var(--text-muted);
  font-size: 14px;
}

/* ===== HOW IT WORKS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.step {
  text-align: center;
  padding: 0 12px;
}

.step .num {
  width: 52px;
  height: 52px;
  background: var(--maid-pink);
  color: var(--clean-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  margin: 0 auto 16px;
}

.step h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
}

.step p {
  color: var(--text-muted);
  font-size: 15px;
}

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--maid-pink) 0%, var(--rose-dust) 100%);
  text-align: center;
  padding: 80px 24px;
}

.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.6vw, 2.5rem);
  margin-bottom: 8px;
}

.cta-band .script {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  margin-bottom: 28px;
  color: var(--clean-black);
}

.cta-band .btn-primary {
  background: var(--clean-black);
  color: var(--clean-white);
}

.cta-band .btn-primary:hover {
  background: var(--clean-white);
  color: var(--clean-black);
}

/* ===== SERVICES PAGE BIG BLOCKS ===== */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: flex-start;
  padding: 56px 0;
  border-bottom: 1px solid #f3e3e8;
}

.service-block:last-of-type { border-bottom: none; }

.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

.service-block .meta .tag {
  display: inline-block;
  background: var(--soft-blush);
  color: var(--rose-deep);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.service-block h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  line-height: 1.1;
  margin-bottom: 8px;
}

.service-block .subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--rose-deep);
  margin-bottom: 14px;
}

.service-block .description {
  color: var(--text-muted);
  font-size: 15.5px;
  margin-bottom: 22px;
}

.service-block .col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 18px 0 12px;
}

.service-block ul.checklist {
  list-style: none;
  padding: 0;
}

.service-block ul.checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: 15px;
}

.service-block ul.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--maid-pink);
}

.service-block ul.checklist li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 11px;
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--clean-white);
  border-bottom: 2px solid var(--clean-white);
  transform: rotate(-45deg);
}

.service-block .columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Add-ons grid */
.addons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.addons .pill {
  background: var(--bg-light-pink);
  border: 1px solid #f3e3e8;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.addons .pill::before {
  content: '✦';
  color: var(--rose-deep);
  font-size: 14px;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  background: linear-gradient(135deg, var(--bg-light-pink) 0%, var(--soft-blush) 100%);
  padding: 100px 0 80px;
  text-align: center;
}

.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 14px;
}

.about-hero .tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  color: var(--rose-deep);
}

.about-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  color: var(--text-muted);
}

.about-content p {
  margin-bottom: 22px;
  line-height: 1.8;
}

.about-content p strong {
  color: var(--clean-black);
}

.about-content .signoff {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--clean-black);
  text-align: center;
  margin-top: 36px;
}

.about-image {
  margin: 56px auto;
  max-width: 580px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(216, 138, 156, 0.28);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  background: var(--bg-light-pink);
  padding: 28px 20px;
  border-radius: 16px;
  text-align: center;
}

.value-card h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--rose-deep);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--clean-black);
  color: var(--clean-white);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.site-footer .brand-block img {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 14px;
}

.site-footer .brand-block p {
  color: #cccccc;
  font-size: 14px;
  max-width: 320px;
}

.site-footer h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--maid-pink);
}

.site-footer ul { list-style: none; padding: 0; }
.site-footer ul li { margin-bottom: 10px; font-size: 14px; color: #cccccc; }
.site-footer ul li a { color: #cccccc; transition: color 0.2s; }
.site-footer ul li a:hover { color: var(--maid-pink); }

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.social-row a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.social-row a:hover {
  background: var(--maid-pink);
}

.social-row svg {
  width: 16px;
  height: 16px;
  fill: var(--clean-white);
}

.social-row a:hover svg { fill: var(--clean-black); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  text-align: center;
  font-size: 13px;
  color: #999;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-grid,
  .service-grid,
  .features-grid,
  .steps,
  .service-block,
  .footer-grid,
  .values-grid,
  .addons {
    grid-template-columns: 1fr;
  }
  .service-block .columns { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .hero { padding: 60px 0; }
  section { padding: 56px 0; }
  .about-image { margin: 36px auto; }
}
