:root {
  --terra: #d3654b;
  --terra-dark: #ad4936;
  --ink: #27312f;
  --muted: #68716d;
  --paper: #f7f5f1;
  --white: #fff;
  --sage: #dfe8e3;
  --sage-soft: #eef2ef;
  --forest: #183b38;
  --forest-light: #28534e;
  --line: rgba(39, 49, 47, .14);
  --story: 'Cormorant Garamond', Georgia, serif;
  --ui: 'Manrope', Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body.tools-page {
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--ui);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.tools-page a {
  color: inherit;
}

.tools-header {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 12%, rgba(255,255,255,.72), transparent 26%),
    linear-gradient(135deg, #e7eee9 0%, #dbe5df 54%, #cfdcd5 100%);
}

.tools-header::after {
  position: absolute;
  right: -140px;
  bottom: -280px;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(24,59,56,.08);
  border-radius: 50%;
  content: '';
  pointer-events: none;
}

.tools-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(440px, .82fr);
  gap: clamp(64px, 8vw, 130px);
  align-items: center;
  width: min(1320px, 90vw);
  min-height: 760px;
  margin: 0 auto;
  padding: 82px 0 112px;
}

.tools-hero__copy {
  max-width: 720px;
}

.tools-eyebrow,
.tools-section-label {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--terra-dark);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: 3.2px;
  line-height: 1.4;
  text-transform: uppercase;
}

.tools-eyebrow::before,
.tools-section-label::before {
  width: 31px;
  height: 1px;
  background: currentColor;
  content: '';
}

.tools-hero h1 {
  max-width: 790px;
  margin-top: 30px;
  font-family: var(--story);
  font-size: clamp(4.6rem, 7vw, 7.2rem);
  font-weight: 400;
  letter-spacing: -.058em;
  line-height: .82;
}

.tools-hero h1 em,
.tools-purpose h2 em,
.featured-tool h2 em,
.tools-library h2 em,
.tool-card h3 em,
.tools-method h2 em,
.tools-origin h2 em,
.tools-guides h2 em,
.tools-closing h2 em {
  color: var(--terra);
  font-weight: 400;
}

.tools-hero__intro {
  max-width: 610px;
  margin-top: 34px;
  color: #56625e;
  font-size: 1rem;
  line-height: 1.85;
}

.tools-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 30px;
  align-items: center;
  margin-top: 36px;
}

.tools-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.45px;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .25s var(--ease), background .25s ease, color .25s ease, border-color .25s ease;
}

.tools-button--primary {
  background: var(--terra);
  box-shadow: 0 15px 34px rgba(173,73,54,.19);
  color: var(--white) !important;
}

.tools-button:hover {
  transform: translateY(-2px);
}

.tools-button--primary:hover {
  background: var(--terra-dark);
}

.tools-text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--forest) !important;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-decoration: none;
  text-transform: uppercase;
}

.tools-text-link span {
  font-size: 1.05rem;
  transition: transform .25s var(--ease);
}

.tools-text-link:hover span {
  transform: translateY(3px);
}

.tools-reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 23px;
  margin-top: 35px;
  color: #5f6965;
  font-size: .72rem;
  list-style: none;
}

.tools-reassurance li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.tools-reassurance li::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--terra);
  content: '';
}

.day-sheet {
  position: relative;
  width: min(100%, 515px);
  justify-self: end;
  padding: 30px 31px 25px;
  border: 1px solid rgba(24,59,56,.15);
  border-radius: 3px;
  background: rgba(255,255,255,.83);
  box-shadow: 0 35px 80px rgba(24,59,56,.14), 20px 18px 0 rgba(24,59,56,.055);
  transform: rotate(1.3deg);
  animation: sheet-arrival 900ms 120ms var(--ease) both;
}

.day-sheet::before {
  position: absolute;
  top: -9px;
  left: 50%;
  width: 92px;
  height: 20px;
  background: rgba(226,214,190,.78);
  content: '';
  transform: translateX(-50%) rotate(-1.8deg);
}

.day-sheet__head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  padding: 11px 0 24px;
  border-bottom: 1px solid var(--line);
}

.day-sheet__head div {
  display: flex;
  flex-direction: column;
}

.day-sheet__head span,
.day-sheet__head time {
  color: var(--muted);
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: 1.15px;
  text-transform: uppercase;
}

.day-sheet__head strong {
  margin-top: 5px;
  font-family: var(--story);
  font-size: 1.85rem;
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1;
}

.day-sheet__head time {
  color: var(--terra-dark);
  font-weight: 700;
}

.day-sheet__timeline {
  padding: 6px 0 4px;
  list-style: none;
}

.day-sheet__timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 48px 13px minmax(0, 1fr) auto;
  gap: 0 13px;
  align-items: center;
  min-height: 86px;
  border-bottom: 1px solid rgba(39,49,47,.1);
}

.day-sheet__timeline li:last-child {
  border-bottom: 0;
}

.day-sheet__timeline li:not(:last-child)::after {
  position: absolute;
  top: calc(50% + 7px);
  bottom: calc(-50% + 7px);
  left: 67px;
  width: 1px;
  background: rgba(24,59,56,.2);
  content: '';
}

.day-sheet__timeline time {
  color: var(--forest);
  font-family: var(--mono);
  font-size: .69rem;
  font-weight: 700;
}

.day-sheet__dot {
  position: relative;
  z-index: 1;
  width: 9px;
  height: 9px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--forest);
  box-shadow: 0 0 0 1px var(--forest);
}

.day-sheet__timeline div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding-right: 10px;
}

.day-sheet__timeline strong {
  font-size: .8rem;
  font-weight: 700;
}

.day-sheet__timeline small {
  margin-top: 2px;
  overflow: hidden;
  color: var(--muted);
  font-size: .61rem;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.day-sheet__state {
  padding: 6px 8px;
  border-radius: 99px;
  font-size: .49rem;
  font-weight: 700;
  letter-spacing: .65px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.day-sheet__state--ready {
  background: #dcebe4;
  color: #2d624c;
}

.day-sheet__state--watch {
  background: #f1e8d4;
  color: #8b6524;
}

.day-sheet__state--alert {
  background: #f4ded8;
  color: #a44835;
}

.day-sheet__footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: .6rem;
}

.day-sheet__footer span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #35614f;
}

.day-sheet__footer i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5c9778;
}

.day-sheet__footer strong {
  color: var(--terra-dark);
}

.tools-purpose,
.tools-library,
.tools-method,
.tools-guides {
  width: min(1200px, 88vw);
  margin: 0 auto;
}

.tools-purpose {
  padding: 130px 0 124px;
}

.tools-purpose__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .68fr);
  gap: clamp(55px, 9vw, 130px);
  align-items: end;
  margin-top: 34px;
}

.tools-purpose h2,
.tools-library h2,
.tools-method h2,
.tools-origin h2,
.tools-guides h2,
.tools-closing h2 {
  font-family: var(--story);
  font-size: clamp(3.3rem, 5.8vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .91;
}

.tools-purpose__copy {
  padding-bottom: 4px;
}

.tools-purpose__copy p,
.tools-library__heading > p,
.tools-origin__copy > p,
.tools-closing > p {
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.9;
}

.tools-purpose__copy p + p,
.tools-origin__copy > p + p {
  margin-top: 18px;
}

.featured-tool {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(410px, .92fr);
  min-height: 730px;
  background: var(--forest);
  color: var(--white);
}

.featured-tool__visual {
  position: relative;
  min-height: 730px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,.048) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.048) 1px, transparent 1px),
    #d9e4de;
  background-size: 38px 38px;
}

.featured-tool__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.24));
  content: '';
  pointer-events: none;
}

.check-card {
  position: absolute;
  z-index: 1;
  width: min(430px, 67%);
  padding: 27px 29px;
  border: 1px solid rgba(24,59,56,.12);
  background: rgba(255,255,255,.94);
  box-shadow: 0 24px 60px rgba(24,59,56,.16);
  color: var(--ink);
}

.check-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--terra-dark);
  font-size: .57rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.check-card strong {
  display: block;
  font-family: var(--story);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.05;
}

.check-card small {
  display: block;
  margin-top: 11px;
  color: var(--muted);
  font-size: .69rem;
  line-height: 1.65;
}

.check-card--one {
  top: 13%;
  left: 9%;
  transform: rotate(-3deg);
}

.check-card--two {
  top: 38%;
  right: 7%;
  transform: rotate(2deg);
}

.check-card--three {
  bottom: 10%;
  left: 14%;
  transform: rotate(-1deg);
}

.featured-tool__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 120px);
}

.tools-section-label--light {
  color: #91b7ad;
}

.featured-tool__status {
  align-self: flex-start;
  margin-top: 35px;
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 99px;
  color: rgba(255,255,255,.72);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1;
  text-transform: uppercase;
}

.featured-tool h2 {
  margin-top: 24px;
  font-family: var(--story);
  font-size: clamp(3.6rem, 5.3vw, 5.7rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .87;
}

.featured-tool__copy > p:not(.tools-section-label):not(.featured-tool__note) {
  max-width: 570px;
  margin-top: 29px;
  color: rgba(255,255,255,.72);
  font-size: .93rem;
  line-height: 1.86;
}

.featured-tool__copy ul {
  margin-top: 30px;
  list-style: none;
}

.featured-tool__copy li {
  position: relative;
  padding: 13px 0 13px 25px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  font-size: .78rem;
}

.featured-tool__copy li::before {
  position: absolute;
  top: 21px;
  left: 1px;
  width: 7px;
  height: 4px;
  border-bottom: 1.5px solid #93c0b4;
  border-left: 1.5px solid #93c0b4;
  content: '';
  transform: rotate(-45deg);
}

.featured-tool__note {
  margin-top: 27px;
  color: #93bcb2;
  font-family: var(--story);
  font-size: 1.18rem;
  font-style: italic;
}

.featured-tool__button {
  align-self: flex-start;
  margin-top: 31px;
}

.tools-library {
  padding: 138px 0 144px;
}

.tools-library__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .55fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: end;
}

.tools-library h2,
.tools-method h2,
.tools-guides h2 {
  margin-top: 29px;
}

.tools-library__heading > p {
  padding-bottom: 4px;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 66px;
}

.tool-card {
  position: relative;
  display: flex;
  min-height: 480px;
  flex-direction: column;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
  transition: border-color .3s ease, box-shadow .3s ease, transform .35s var(--ease);
}

.tool-card--featured {
  background: var(--sage-soft);
}

.tool-card:hover {
  border-color: rgba(39,49,47,.26);
  box-shadow: 0 22px 48px rgba(39,49,47,.07);
  transform: translateY(-4px);
}

.tool-card__top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: .57rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.tool-card__top strong {
  color: var(--terra);
  font-family: var(--mono);
  font-size: .67rem;
}

.tool-card__icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin-top: 38px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
}

.tool-card__icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.tool-card h3 {
  margin-top: 32px;
  font-family: var(--story);
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .93;
}

.tool-card p {
  max-width: 500px;
  margin-top: 23px;
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.8;
}

.tool-card > a {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  padding-top: 28px;
  color: var(--terra-dark);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-decoration: none;
  text-transform: uppercase;
}

.tools-method {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(440px, .85fr);
  gap: clamp(70px, 11vw, 170px);
  padding: 20px 0 140px;
}

.tools-steps {
  list-style: none;
}

.tools-steps li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 25px;
  padding: 31px 0;
  border-top: 1px solid var(--line);
}

.tools-steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.tools-steps > li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(39,49,47,.18);
  border-radius: 50%;
  color: var(--terra-dark);
  font-family: var(--mono);
  font-size: .63rem;
}

.tools-steps h3 {
  font-family: var(--story);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.1;
}

.tools-steps p {
  margin-top: 8px;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.72;
}

.tools-origin {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  min-height: 690px;
  background: var(--sage-soft);
}

.tools-origin__image {
  min-height: 690px;
  overflow: hidden;
}

.tools-origin__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.88) contrast(.97);
}

.tools-origin__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(68px, 8vw, 120px);
}

.tools-origin h2 {
  margin: 30px 0;
  font-size: clamp(3.4rem, 5vw, 5.4rem);
}

.tools-origin__copy .tools-text-link {
  margin-top: 31px;
}

.tools-text-link--dark:hover span {
  transform: translateX(4px);
}

.tools-guides {
  display: grid;
  grid-template-columns: minmax(0, .76fr) minmax(500px, .94fr);
  gap: clamp(75px, 10vw, 150px);
  padding: 135px 0 145px;
}

.tools-guides__list {
  list-style: none;
}

.tools-guides__list li {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: baseline;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.tools-guides__list li:last-child {
  border-bottom: 1px solid var(--line);
}

.tools-guides__list span,
.tools-guides__list small {
  color: var(--terra-dark);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.tools-guides__list strong {
  font-family: var(--story);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.25;
}

.tools-guides__list small {
  color: var(--muted);
  white-space: nowrap;
}

.tools-closing {
  display: flex;
  min-height: 610px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 95px 7vw 110px;
  background:
    linear-gradient(rgba(24,59,56,.86), rgba(24,59,56,.9)),
    url('/images/mariage-charlotte-morgan-poster.webp') center 42% / cover;
  color: var(--white);
  text-align: center;
}

.tools-closing h2 {
  margin-top: 29px;
  color: var(--white);
  font-size: clamp(4rem, 7vw, 7rem);
}

.tools-closing > p:not(.tools-section-label) {
  max-width: 590px;
  margin-top: 28px;
  color: rgba(255,255,255,.72);
}

.tools-button--light {
  margin-top: 34px;
  border-color: rgba(255,255,255,.38);
  background: rgba(255,255,255,.94);
  color: var(--forest) !important;
}

.tools-button--light:hover {
  background: var(--white);
}

.tools-button:focus-visible,
.tools-text-link:focus-visible,
.tool-card > a:focus-visible {
  outline: 2px solid var(--terra);
  outline-offset: 5px;
}

@keyframes sheet-arrival {
  from {
    opacity: 0;
    transform: translateY(22px) rotate(3deg);
  }
}

@media (max-width: 1120px) {
  .tools-hero {
    grid-template-columns: minmax(0, .95fr) minmax(390px, .75fr);
    gap: 50px;
    width: min(1200px, 88vw);
  }

  .tools-hero h1 {
    font-size: clamp(4.4rem, 7.8vw, 6.6rem);
  }

  .day-sheet {
    padding-right: 24px;
    padding-left: 24px;
  }

  .day-sheet__timeline li {
    grid-template-columns: 43px 11px minmax(0, 1fr);
  }

  .day-sheet__timeline li:not(:last-child)::after {
    left: 60px;
  }

  .day-sheet__state {
    display: none;
  }

  .featured-tool__copy,
  .tools-origin__copy {
    padding-right: 7vw;
    padding-left: 7vw;
  }
}

@media (max-width: 900px) {
  .tools-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 80px 0 100px;
  }

  .tools-hero__copy {
    max-width: 700px;
  }

  .day-sheet {
    width: min(100%, 590px);
    justify-self: center;
    margin-top: 25px;
  }

  .tools-purpose__grid,
  .tools-library__heading,
  .tools-method,
  .tools-guides {
    grid-template-columns: 1fr;
  }

  .tools-purpose__copy,
  .tools-library__heading > p {
    max-width: 640px;
  }

  .featured-tool,
  .tools-origin {
    grid-template-columns: 1fr;
  }

  .featured-tool__visual,
  .tools-origin__image {
    min-height: 590px;
  }

  .featured-tool__copy,
  .tools-origin__copy {
    padding: 85px 8vw 95px;
  }

  .tools-method {
    gap: 60px;
  }

  .tools-guides {
    gap: 65px;
  }
}

@media (max-width: 680px) {
  .tools-header::after {
    display: none;
  }

  .tools-hero {
    width: min(100% - 38px, 620px);
    padding: 60px 0 78px;
  }

  .tools-hero h1 {
    margin-top: 24px;
    font-size: clamp(3.7rem, 18vw, 5.35rem);
    line-height: .82;
  }

  .tools-hero__intro {
    font-size: .9rem;
  }

  .tools-hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .tools-reassurance {
    gap: 9px 16px;
  }

  .day-sheet {
    padding: 25px 19px 20px;
    box-shadow: 0 24px 50px rgba(24,59,56,.13), 9px 10px 0 rgba(24,59,56,.05);
    transform: rotate(.6deg);
  }

  .day-sheet__head strong {
    font-size: 1.55rem;
  }

  .day-sheet__timeline li {
    grid-template-columns: 39px 10px minmax(0, 1fr);
    gap: 0 10px;
  }

  .day-sheet__timeline li:not(:last-child)::after {
    left: 53px;
  }

  .day-sheet__timeline small {
    white-space: normal;
  }

  .day-sheet__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .tools-purpose,
  .tools-library,
  .tools-method,
  .tools-guides {
    width: min(100% - 38px, 620px);
  }

  .tools-purpose {
    padding: 90px 0 88px;
  }

  .tools-purpose__grid {
    gap: 40px;
    margin-top: 27px;
  }

  .tools-purpose h2,
  .tools-library h2,
  .tools-method h2,
  .tools-origin h2,
  .tools-guides h2,
  .tools-closing h2 {
    font-size: clamp(3rem, 15vw, 4.45rem);
  }

  .featured-tool__visual {
    min-height: 550px;
  }

  .check-card {
    width: 78%;
    padding: 21px 22px;
  }

  .check-card strong {
    font-size: 1.5rem;
  }

  .check-card small {
    font-size: .64rem;
  }

  .featured-tool__copy,
  .tools-origin__copy {
    padding: 70px 20px 80px;
  }

  .featured-tool h2 {
    font-size: clamp(3.4rem, 16vw, 4.7rem);
  }

  .tools-library {
    padding: 95px 0 100px;
  }

  .tools-library__heading {
    gap: 35px;
  }

  .tool-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 48px;
  }

  .tool-card {
    min-height: 440px;
    padding: 31px 26px 34px;
  }

  .tool-card h3 {
    font-size: clamp(2.7rem, 13vw, 3.8rem);
  }

  .tools-method {
    gap: 52px;
    padding: 0 0 100px;
  }

  .tools-steps li {
    grid-template-columns: 43px minmax(0, 1fr);
    gap: 17px;
  }

  .tools-steps > li > span {
    width: 38px;
    height: 38px;
  }

  .tools-origin__image {
    min-height: 430px;
  }

  .tools-guides {
    gap: 50px;
    padding: 90px 0 100px;
  }

  .tools-guides__list li {
    grid-template-columns: 1fr auto;
    gap: 8px 16px;
    padding: 22px 0;
  }

  .tools-guides__list strong {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 1.25rem;
  }

  .tools-guides__list small {
    grid-column: 2;
    grid-row: 1;
  }

  .tools-closing {
    min-height: 560px;
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .day-sheet {
    animation: none;
  }

  .tools-button,
  .tools-text-link span,
  .tool-card {
    transition: none;
  }
}
