:root {
  --ink: #173233;
  --ink-soft: #385659;
  --teal: #0f4c4a;
  --teal-light: #dcefed;
  --coral: #e98975;
  --green: #7ea77a;
  --mustard: #c99a35;
  --paper: #fffaf3;
  --white: #ffffff;
  --line: #d9e2df;
  --shadow: 0 18px 45px rgba(22, 50, 51, 0.16);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: var(--white);
  background: var(--teal);
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(8, 30, 31, 0.68), rgba(8, 30, 31, 0));
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 250, 243, 0.94);
  border-bottom: 1px solid rgba(217, 226, 223, 0.9);
  box-shadow: 0 10px 30px rgba(22, 50, 51, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 760;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  color: var(--white);
  background: var(--coral);
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 30px);
  font-size: 0.95rem;
  font-weight: 650;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 6px;
}

.hero {
  min-height: 84svh;
  display: grid;
  align-items: center;
  padding: 104px clamp(20px, 6vw, 80px) 64px;
  background:
    linear-gradient(90deg, rgba(13, 40, 41, 0.78) 0%, rgba(13, 40, 41, 0.5) 31%, rgba(13, 40, 41, 0.08) 62%),
    url("assets/deux-mains-un-foyer-hero-couple.png?v=20260504-4") center / cover no-repeat;
}

.hero-content {
  width: min(620px, 100%);
  min-width: 0;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd4c8;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 8vw, 6.8rem);
  font-weight: 850;
}

h1 span {
  display: block;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 820;
}

h3 {
  font-size: 1.08rem;
  font-weight: 780;
}

.hero-text {
  max-width: 56ch;
  margin: 22px 0 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 760;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:not(:disabled):hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button:disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
}

.button-primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: var(--shadow);
}

.hero .button-primary {
  color: var(--teal);
  background: var(--white);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.12);
}

.button-store {
  gap: 10px;
  color: var(--teal);
  background: var(--white);
  box-shadow: var(--shadow);
}

.button-store::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid var(--green);
}

.button-store:disabled {
  opacity: 0.94;
}

.button-store-dark {
  width: fit-content;
  margin-top: 22px;
  color: var(--white);
  background: var(--teal);
}

.section,
.intro-band {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.intro-band {
  padding-top: clamp(28px, 4vw, 44px);
  padding-bottom: clamp(28px, 4vw, 44px);
  color: var(--white);
  background: var(--teal);
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
}

.intro-grid p {
  margin: 0;
  font-size: clamp(1.02rem, 1.8vw, 1.24rem);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(28px, 5vw, 48px);
}

.section-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.offer-section {
  background: #fffdf8;
}

.offer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.offer-copy {
  margin-bottom: 0;
}

.offer-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.offer-list li {
  position: relative;
  padding: 14px 0 14px 34px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}

.offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, transparent 0 48%, var(--white) 49% 58%, transparent 59% 100%),
    var(--coral);
  box-shadow: inset 0 0 0 1px rgba(23, 50, 51, 0.08);
}

.offer-panel {
  padding: clamp(24px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.offer-kicker {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 760;
}

.offer-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 8px;
}

.offer-price strong {
  color: var(--ink);
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.95;
}

.offer-price span {
  color: var(--ink-soft);
  font-weight: 760;
}

.offer-subtitle {
  margin: 14px 0 24px;
  color: var(--ink-soft);
}

.offer-note {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(32px, 5vw, 56px);
}

.value-strip article {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(22, 50, 51, 0.06);
}

.value-strip strong,
.value-strip span {
  display: block;
}

.value-strip strong {
  color: var(--teal);
  font-size: 1.06rem;
}

.value-strip span {
  margin-top: 8px;
  color: var(--ink-soft);
}

.budget-section {
  background: var(--paper);
}

.budget-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.budget-panel {
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.budget-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  color: var(--ink-soft);
}

.budget-panel-header strong {
  color: var(--teal);
}

.budget-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.budget-metrics div {
  padding: 16px;
  background: #edf4f1;
  border-radius: var(--radius);
}

.budget-metrics span,
.budget-list span {
  color: var(--ink-soft);
}

.budget-metrics strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 1.18rem;
}

.budget-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.budget-list li {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.budget-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.coral-dot {
  background: var(--coral);
}

.green-dot {
  background: var(--green);
}

.teal-dot {
  background: var(--teal);
}

.mustard-dot {
  background: var(--mustard);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  min-height: 260px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(22, 50, 51, 0.06);
}

.feature-card p {
  margin: 14px 0 0;
  color: var(--ink-soft);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  background: var(--teal-light);
}

.feature-icon::before,
.feature-icon::after {
  content: "";
  display: block;
}

.calendar-icon::before {
  width: 22px;
  height: 20px;
  border: 2px solid var(--teal);
  border-top-width: 6px;
  border-radius: 4px;
}

.budget-icon::before {
  width: 24px;
  height: 20px;
  border: 2px solid var(--teal);
  border-radius: 5px;
  background:
    linear-gradient(var(--teal), var(--teal)) 4px 12px / 4px 4px no-repeat,
    linear-gradient(var(--green), var(--green)) 10px 8px / 4px 8px no-repeat,
    linear-gradient(var(--coral), var(--coral)) 16px 5px / 4px 11px no-repeat;
}

.category-icon {
  background: #fde7df;
}

.category-icon::before {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background:
    conic-gradient(var(--coral) 0 34%, var(--green) 34% 64%, var(--mustard) 64% 82%, var(--teal) 82% 100%);
}

.task-icon {
  background: #fde7df;
}

.task-icon::before {
  width: 22px;
  height: 12px;
  border-left: 3px solid var(--coral);
  border-bottom: 3px solid var(--coral);
  transform: rotate(-45deg) translate(1px, -2px);
}

.people-icon {
  background: #e6efdd;
}

.people-icon::before {
  width: 24px;
  height: 14px;
  border-radius: 14px 14px 6px 6px;
  background:
    radial-gradient(circle at 28% 0, var(--green) 0 4px, transparent 4px),
    radial-gradient(circle at 72% 0, var(--green) 0 4px, transparent 4px),
    linear-gradient(var(--green), var(--green)) bottom / 100% 9px no-repeat;
}

.note-icon {
  background: #f7edd5;
}

.note-icon::before {
  width: 20px;
  height: 24px;
  border: 2px solid var(--mustard);
  border-radius: 4px;
  background: linear-gradient(var(--mustard), var(--mustard)) 5px 8px / 10px 2px no-repeat;
}

.muted-section {
  background: #edf4f1;
}

.audience-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.audience-layout article {
  padding-top: 20px;
  border-top: 3px solid var(--coral);
}

.audience-layout article:nth-child(2) {
  border-color: var(--green);
}

.audience-layout article:nth-child(3) {
  border-color: var(--mustard);
}

.audience-layout p {
  color: var(--ink-soft);
}

.process-section {
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.process-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.process-list li:first-child {
  padding-top: 0;
}

.process-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-weight: 800;
}

.process-list p {
  margin: 8px 0 0;
  color: var(--ink-soft);
}

.download-section {
  background: var(--teal);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.contact-grid p {
  color: rgba(255, 255, 255, 0.82);
}

.email-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--white);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  font-weight: 800;
  text-decoration-color: rgba(255, 255, 255, 0.5);
  text-underline-offset: 6px;
}

.contact-form {
  padding: clamp(20px, 4vw, 32px);
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

label {
  font-weight: 760;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfdfc;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
.button:focus-visible {
  outline: 3px solid rgba(233, 137, 117, 0.45);
  outline-offset: 2px;
}

.form-note {
  margin: 14px 0 0;
  color: var(--ink-soft) !important;
  font-size: 0.92rem;
}

.contact-placeholder {
  min-height: 220px;
  display: grid;
  align-content: center;
}

.contact-placeholder p {
  margin: 14px 0 0;
  color: var(--ink-soft);
}

.site-footer {
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--ink-soft);
  background: var(--paper);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.footer-inner p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-links a {
  color: var(--ink-soft);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.legal-page {
  background: #fffdf8;
}

.legal-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--ink);
  background: rgba(255, 250, 243, 0.96);
  border-bottom: 1px solid rgba(217, 226, 223, 0.9);
  backdrop-filter: blur(18px);
}

.legal-main {
  padding: clamp(42px, 7vw, 82px) clamp(20px, 5vw, 72px);
}

.legal-article {
  width: min(860px, 100%);
  margin: 0 auto;
}

.legal-article h1 {
  max-width: 12ch;
  color: var(--ink);
  font-size: clamp(2.7rem, 7vw, 5.6rem);
}

.legal-updated {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-weight: 700;
}

.legal-section {
  padding: clamp(24px, 4vw, 36px) 0;
  border-top: 1px solid var(--line);
}

.legal-section:first-of-type {
  margin-top: clamp(28px, 5vw, 46px);
}

.legal-section h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.legal-section p,
.legal-list {
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.legal-section a {
  color: var(--teal);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.legal-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 22px;
}

.legal-list-numbered {
  list-style: decimal;
}

.legal-table {
  overflow-x: auto;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.legal-table table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

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

.legal-table th {
  color: var(--teal);
  background: var(--teal-light);
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 920px) {
  .feature-grid,
  .value-strip,
  .audience-layout,
  .process-grid,
  .contact-grid,
  .offer-layout,
  .budget-layout,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
  }

  .hero {
    min-height: 80svh;
    background:
      linear-gradient(90deg, rgba(13, 40, 41, 0.86) 0%, rgba(13, 40, 41, 0.6) 46%, rgba(13, 40, 41, 0.22) 100%),
      url("assets/deux-mains-un-foyer-hero-couple.png?v=20260504-4") 58% center / cover no-repeat;
  }
}

@media (max-width: 680px) {
  .hero-content,
  .section-inner {
    width: min(100%, 350px);
    margin-left: 0;
    margin-right: auto;
  }

  .site-header {
    position: absolute;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    background: linear-gradient(180deg, rgba(8, 30, 31, 0.72), rgba(8, 30, 31, 0));
  }

  .legal-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .site-header.is-scrolled {
    color: var(--white);
    background: linear-gradient(180deg, rgba(8, 30, 31, 0.72), rgba(8, 30, 31, 0));
    border-bottom: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 12px 18px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 82svh;
    padding-top: 156px;
    padding-bottom: 46px;
    background:
      linear-gradient(180deg, rgba(13, 40, 41, 0.9) 0%, rgba(13, 40, 41, 0.7) 52%, rgba(13, 40, 41, 0.28) 100%),
      url("assets/deux-mains-un-foyer-hero-couple.png?v=20260504-4") 72% center / cover no-repeat;
  }

  .budget-metrics {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 12.6vw, 3.45rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 2.7rem);
  }

  .hero-actions,
  .footer-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
