@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Mulish:ital,wght@0,600;0,700;0,800;1,700&display=swap');

:root {
  --font-montserrat: 'Montserrat';
  --font-mulish: 'Mulish';
  --pink: #fb5fab;
  --pink-dark: #ea559d;
  --navy: #0f172a;
  --body: #454f5e;
  --blush: #fceef5;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--body);
  background: var(--white);
  font-family: var(--font-montserrat), Arial, sans-serif;
  font-size: 16px;
  line-height: 1.85;
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: relative;
  z-index: 10;
  min-height: 102px;
  background: var(--white);
}
.site-header--overlay { position: absolute; inset: 0 0 auto; background: transparent; }
.header-inner {
  width: min(1240px, calc(100% - 40px));
  min-height: 102px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 130px 1fr 44px;
  align-items: center;
  gap: 22px;
}
.brand { display: flex; align-items: center; }
.brand img { width: 85px; height: auto; display: block; }
.nav-list {
  min-height: 70px;
  margin: 0;
  padding: 0 6px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  list-style: none;
  background: var(--pink);
}
.nav-list a {
  height: 70px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  color: var(--navy);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}
.nav-list a:hover,
.nav-list a:focus-visible { color: var(--white); }
.search-icon {
  width: 22px;
  height: 22px;
  display: block;
  border: 3px solid var(--pink);
  border-radius: 50%;
  position: relative;
}
.search-icon::after {
  content: '';
  position: absolute;
  width: 9px;
  height: 3px;
  right: -7px;
  bottom: -4px;
  background: var(--pink);
  transform: rotate(45deg);
  transform-origin: left center;
}
.menu-toggle { display: none; width: 42px; height: 42px; padding: 9px; border: 0; background: transparent; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--navy); }

.hero {
  min-height: 760px;
  padding: 152px max(20px, calc((100% - 1240px) / 2)) 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  overflow: hidden;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--navy);
  font-family: var(--font-mulish), Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}
.hero h1 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-mulish), Arial, sans-serif;
  font-size: clamp(72px, 7.5vw, 120px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.055em;
}
.hero-description {
  max-width: 760px;
  margin: 34px 0 20px;
  color: var(--body);
  font-size: 16px;
  font-style: italic;
  font-weight: 700;
}
.button {
  min-width: 178px;
  padding: 11px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: var(--pink);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}
.button:hover,
.button:focus-visible { background: var(--pink-dark); }
.hero-image-wrap { min-height: 530px; display: flex; align-items: center; }
.hero-image {
  width: 100%;
  height: 520px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.section { width: min(1160px, calc(100% - 40px)); margin: 0 auto; padding: 100px 0; }
.section h2, .inner-hero h1, .article-copy h2, .privacy h2 {
  margin: 0 0 18px; color: var(--navy); font-family: var(--font-mulish), Arial, sans-serif; font-weight: 800; line-height: 1.18;
}
.section h2 { font-size: clamp(36px, 4.5vw, 62px); letter-spacing: -0.04em; }
.section-heading { max-width: 740px; margin: 0 auto 52px; text-align: center; }
.section-heading > p:last-child { max-width: 650px; margin: 0 auto; }
.section-heading.align-left { margin-left: 0; text-align: left; }
.section-heading.align-left > p:last-child { margin-left: 0; }
.cta-section { min-height: 720px; display: grid; grid-template-columns: 1fr 0.9fr; align-items: center; gap: 80px; }
.cta-copy blockquote { margin: 28px 0; padding-left: 22px; border-left: 3px solid var(--pink); color: var(--navy); font-style: italic; font-weight: 600; }
.cta-visual { min-height: 520px; display: grid; place-items: center; background: var(--blush); }
.cta-visual img { width: min(100%, 520px); height: auto; display: block; }
.featured { width: 100%; max-width: none; padding-left: max(20px, calc((100% - 1160px)/2)); padding-right: max(20px, calc((100% - 1160px)/2)); background: #fff8fb; }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.article-card { overflow: hidden; background: var(--white); box-shadow: 0 15px 45px rgba(15,23,42,.08); }
.article-card img { width: 100%; height: 240px; display: block; object-fit: cover; }
.article-card > div { padding: 28px; }
.article-card h3 { margin: 0 0 14px; color: var(--navy); font-family: var(--font-mulish), Arial, sans-serif; font-size: 22px; line-height: 1.35; }
.article-card p { font-size: 14px; line-height: 1.75; }
.article-card a, .sidebar a, .privacy a { color: var(--pink-dark); font-weight: 700; }
.signals { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 75px; }
.signals > div:first-child { min-height: 610px; background: var(--blush); }
.signals img { width: 100%; height: 610px; display: block; object-fit: cover; }
.signal-list { margin: 30px 0 0; padding: 0; list-style: none; }
.signal-list li { margin: 14px 0; padding-left: 38px; position: relative; color: var(--navy); font-weight: 600; }
.signal-list li::before { content: '✓'; position: absolute; left: 0; top: 0; width: 25px; height: 25px; border-radius: 50%; background: var(--pink); color: #fff; display: grid; place-items: center; font-size: 14px; }
.testimonials { width: 100%; max-width: none; padding-left: max(20px, calc((100% - 1160px)/2)); padding-right: max(20px, calc((100% - 1160px)/2)); background: var(--blush); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-grid figure { margin: 0; padding: 35px; background: #fff; }
.testimonial-grid blockquote { margin: 0 0 28px; font-style: italic; }
.testimonial-grid figcaption { display: flex; align-items: center; gap: 12px; color: var(--navy); }
.avatar-placeholder { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--pink); color: #fff; font-weight: 800; }
.inner-hero { min-height: 280px; padding: 65px max(20px, calc((100% - 1160px)/2)); display: flex; flex-direction: column; justify-content: center; background: var(--blush); }
.inner-hero h1 { font-size: clamp(48px, 6vw, 78px); letter-spacing: -0.04em; }
.inner-hero p { margin: 0; }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 290px; gap: 60px; }
.archive-list { display: grid; gap: 36px; }
.post-card { display: grid; grid-template-columns: 250px 1fr; gap: 30px; padding-bottom: 36px; border-bottom: 1px solid #e6e9ee; }
.post-card img { width: 250px; height: 190px; object-fit: cover; }
.post-card h2 { font-size: 28px; letter-spacing: -0.025em; }
.button-small { min-width: 120px; padding: 8px 20px; }
.sidebar { align-self: start; padding: 28px; background: #fff8fb; }
.sidebar h3 { margin-top: 0; color: var(--navy); font-size: 22px; }
.sidebar a { display: block; padding: 13px 0; border-bottom: 1px solid #efdbe5; font-size: 13px; line-height: 1.5; }
.narrow { max-width: 860px; }
.calculator-card, .contact-form { padding: 42px; border: 1px solid #f4dce8; border-radius: 12px; background: #fff8fb; box-shadow: 0 14px 44px rgba(15,23,42,.07); }
.calculator-card h2 { font-size: 38px; }
.calculator-card label, .contact-form label { display: grid; gap: 8px; margin: 16px 0; color: var(--navy); font-size: 14px; font-weight: 700; }
input, textarea { width: 100%; padding: 13px 15px; border: 1px solid #d7dce4; border-radius: 5px; background: #fff; color: var(--navy); font: inherit; }
textarea { resize: vertical; }
button.button { border: 0; cursor: pointer; }
.calculator-result, .love-result { margin-top: 28px; padding: 24px; border-left: 4px solid var(--pink); background: #fff; }
.calculator-result h3 { margin-top: 0; color: var(--navy); }
.two-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.love-card { text-align: center; }
.love-card .two-fields { text-align: left; }
.heart-mark { color: var(--pink); font-size: 62px; line-height: 1; }
.love-result { border: 0; border-radius: 10px; color: var(--pink-dark); font-size: 24px; font-weight: 800; }
.form-note { color: #287748; font-weight: 700; }
.article-copy { margin-top: 55px; }
.article-copy h2, .privacy h2 { margin-top: 44px; font-size: 34px; }
.privacy ul { padding-left: 24px; }
.site-footer { padding: 34px 20px; background: var(--navy); color: rgba(255,255,255,.82); font-size: 13px; }
.footer-inner { width: min(1160px, 100%); margin: 0 auto; display: flex; justify-content: space-between; gap: 24px; }
.footer-inner p { margin: 0; }
.chat-bubble { position: fixed; right: 26px; bottom: 26px; z-index: 20; width: 56px; height: 56px; border: 0; border-radius: 50%; background: var(--pink); box-shadow: 0 8px 25px rgba(234,85,157,.35); }
.chat-bubble::before { content: ''; position: absolute; inset: 15px 13px 17px; border: 2px solid #fff; border-radius: 14px; }
.chat-bubble::after { content: ''; position: absolute; right: 14px; bottom: 13px; width: 8px; height: 8px; border-right: 2px solid #fff; transform: rotate(35deg); }

@media (max-width: 1080px) {
  .header-inner { grid-template-columns: 100px 1fr 36px; gap: 12px; }
  .nav-list a { padding: 0 10px; font-size: 13px; }
  .hero { grid-template-columns: 0.9fr 1.1fr; }
}
@media (max-width: 820px) {
  .site-header, .site-header--overlay { position: relative; background: var(--white); }
  .header-inner { min-height: 82px; grid-template-columns: 90px 1fr 42px; }
  .main-nav { display: none; position: absolute; inset: 82px 0 auto; padding: 0 20px 20px; background: #fff; }
  .main-nav--open { display: block; }
  .nav-list { min-height: 0; display: block; padding: 8px; }
  .nav-list a { height: auto; padding: 13px 14px; white-space: normal; }
  .menu-toggle { display: block; justify-self: end; }
  .search-icon { display: none; }
  .hero { min-height: auto; padding-top: 48px; grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(56px, 16vw, 82px); }
  .hero-image-wrap, .hero-image { min-height: 0; height: 420px; }
  .cta-section, .signals, .content-layout { grid-template-columns: 1fr; gap: 45px; }
  .signals > div:first-child, .signals img { min-height: 0; height: 520px; }
  .article-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .post-card { grid-template-columns: 1fr; }
  .post-card img { width: 100%; height: 260px; }
}
@media (max-width: 560px) {
  body { line-height: 1.7; }
  .section { width: min(100% - 30px, 1160px); padding: 72px 0; }
  .hero { padding-left: 15px; padding-right: 15px; }
  .hero-image-wrap, .hero-image { height: 330px; }
  .cta-visual { min-height: 360px; }
  .signals > div:first-child, .signals img { height: 410px; }
  .two-fields { grid-template-columns: 1fr; gap: 0; }
  .calculator-card, .contact-form { padding: 26px 20px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
