﻿:root {
  --red: #e60023;
  --red-dark: #c90017;
  --ink: #1f1a24;
  --muted: #6b5f6f;
  --line: #f2d7dd;
  --soft: #fff7f8;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 94% 22%, rgba(228, 3, 28, 0.12) 0 4.5rem, transparent 8.5rem),
    radial-gradient(circle at 89% 77%, rgba(228, 3, 28, 0.1) 0 8rem, transparent 15rem),
    linear-gradient(180deg, #fff 0%, #fffafb 38%, #fff4f5 100%);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 110px;
  padding: 0 clamp(1.25rem, 6vw, 6.2rem);
  border-bottom: 1px solid #f6dadd;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  display: block;
  width: clamp(13rem, 18vw, 17.8rem);
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.3rem, 3vw, 3.1rem);
  font-size: clamp(0.95rem, 1.2vw, 1.2rem);
  font-weight: 700;
}

.main-nav a {
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--red);
}

.main-nav .nav-cta,
.primary-button {
  border: 0;
  border-radius: 0.75rem;
  color: var(--white);
  background: linear-gradient(180deg, #ef0a24 0%, #d90019 100%);
  box-shadow: 0 0.9rem 1.8rem rgba(228, 3, 28, 0.18);
  cursor: pointer;
}

.main-nav .nav-cta {
  padding: 1rem 1.35rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(24rem, 32.8rem);
  align-items: center;
  gap: clamp(3rem, 8vw, 7.5rem);
  width: min(91rem, calc(100% - 2.5rem));
  min-height: calc(100vh - 110px);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 4.7rem) 0 clamp(3rem, 7vw, 6.5rem);
}

.hero-copy {
  max-width: 42.5rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.55rem;
  padding: 0.6rem 1.08rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--red);
  background: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 800;
}

.pill span {
  font-size: 1.3rem;
  line-height: 1;
}

h1,
h2,
.days-number,
.days-label {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(4.2rem, 6.2vw, 6.45rem);
  line-height: 0.99;
}

h1 span,
h2 span,
.days-number {
  color: var(--red);
}

.lead {
  margin: 1.55rem 0 1.9rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.55vw, 1.44rem);
  line-height: 1.55;
}

.date-card {
  width: min(100%, 42.4rem);
  padding: 1.45rem 1.55rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 1.3rem 3rem rgba(106, 30, 42, 0.05);
}

.date-card label {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 1.02rem;
  font-weight: 800;
}

.date-actions {
  display: grid;
  grid-template-columns: minmax(16rem, 1fr) minmax(13.5rem, 15.4rem);
  gap: 1.7rem;
  align-items: stretch;
}

.date-field {
  position: relative;
  min-width: 0;
}

.date-picker {
  display: grid;
  grid-template-columns: 1.55rem 1fr 1px 1.55rem;
  align-items: center;
  gap: 1rem;
  width: 100%;
  min-height: 4.75rem;
  padding: 0 1.1rem;
  border: 1px solid #f1dfe2;
  border-radius: 0.82rem;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 1.45rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.date-picker[aria-expanded="true"] {
  border-color: var(--line);
  box-shadow: 0 0 0 3px rgba(230, 0, 35, 0.06);
}

.date-picker.is-nudged {
  animation: dateNudge 1.45s ease-in-out 2;
}

.date-picker.is-empty .date-value {
  color: var(--muted);
}

.date-picker svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: var(--red);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.date-picker .divider {
  display: block;
  width: 1px;
  height: 2.2rem;
  background: #f1dfe2;
}

.date-picker .chevron {
  stroke: var(--ink);
}

@keyframes dateNudge {
  0%,
  100% {
    border-color: #f1dfe2;
    box-shadow: 0 0 0 0 rgba(230, 0, 35, 0);
    transform: translateY(0);
  }

  38% {
    border-color: var(--red);
    box-shadow: 0 0 0 0.42rem rgba(230, 0, 35, 0.1), 0 0.9rem 1.9rem rgba(230, 0, 35, 0.12);
    transform: translateY(-2px);
  }

  70% {
    border-color: var(--line);
    box-shadow: 0 0 0 0.22rem rgba(230, 0, 35, 0.05);
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .date-picker.is-nudged {
    animation: none;
    border-color: var(--red);
    box-shadow: 0 0 0 0.3rem rgba(230, 0, 35, 0.08);
  }
}

.date-popover {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: min(40rem, calc(100vw - 2rem));
  border: 1px solid var(--line);
  border-radius: 1.75rem;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 1.5rem 5rem rgba(31, 26, 36, 0.1);
  overflow: auto;
}

.date-popover[hidden] {
  display: none;
}

.calendar-header {
  display: grid;
  grid-template-columns: 3rem minmax(12rem, 1fr) minmax(9.5rem, 0.94fr) 3rem;
  align-items: center;
  gap: 1rem;
  padding: 2rem 2.35rem 1.7rem;
}

.calendar-select {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 4.35rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--white);
  color: var(--ink);
  overflow: hidden;
}

.calendar-year-select {
  display: block;
}

.calendar-select select {
  display: block;
  width: 100%;
  height: 4.35rem;
  min-width: 0;
  padding: 0 3.1rem 0 3.55rem;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
  appearance: none;
  cursor: pointer;
}

.calendar-year-select select {
  padding-left: 1.35rem;
}

.calendar-select svg {
  position: absolute;
  top: 50%;
  left: 1.15rem;
  z-index: 1;
  width: 1.65rem;
  height: 1.65rem;
  fill: none;
  stroke: var(--red);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
  transform: translateY(-50%);
}

.calendar-select .select-arrow {
  right: 1.1rem;
  left: auto;
  width: 1.55rem;
  height: 1.55rem;
  stroke: var(--ink);
  stroke-width: 3;
}

.calendar-nav {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.calendar-nav:hover {
  background: #fff2f4;
  color: var(--red);
}

.calendar-nav svg {
  width: 2rem;
  height: 2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 0 2.25rem;
}

.calendar-weekdays {
  margin-bottom: 1.3rem;
}

.calendar-weekdays span {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 800;
  text-align: center;
}

.calendar-weekdays span:last-child {
  color: var(--red);
}

.calendar-grid {
  row-gap: 0.85rem;
  padding-bottom: 1.75rem;
}

.calendar-day {
  display: grid;
  place-items: center;
  width: 3.55rem;
  height: 3.55rem;
  margin: 0 auto;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 1.42rem;
  font-weight: 700;
  cursor: pointer;
}

.calendar-day:hover {
  background: #fff0f2;
}

.calendar-day.is-weekend {
  color: var(--red);
}

.calendar-day.is-outside {
  color: #9b929e;
}

.calendar-day.is-today {
  box-shadow: inset 0 0 0 2px rgba(230, 0, 35, 0.28);
}

.calendar-day.is-selected {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 0.75rem 1.65rem rgba(230, 0, 35, 0.22);
}

.calendar-day.is-selected:hover {
  background: var(--red);
}

.calendar-day.is-disabled,
.calendar-day:disabled {
  color: #c8b7bd;
  background: transparent;
  border-color: transparent;
  opacity: 0.42;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}

.calendar-day.is-disabled:hover,
.calendar-day:disabled:hover {
  color: #c8b7bd;
  background: transparent;
  border-color: transparent;
}

.calendar-nav:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  pointer-events: none;
}

.calendar-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.7rem 2.35rem 1.9rem;
  border-top: 1px solid #fff0f2;
}

.calendar-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.35rem;
  padding: 0 1.25rem;
  border: 1px solid #f6dce1;
  border-radius: 0.82rem;
  color: var(--red);
  background: #fff9fa;
  font: inherit;
  font-size: 1.38rem;
  font-weight: 600;
  cursor: pointer;
}

.calendar-action:hover {
  color: var(--red-dark);
}

.calendar-today {
  background: #fff9fa;
}

.calendar-done {
  justify-self: end;
  min-width: 9.4rem;
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(180deg, #ef0a24 0%, #d90019 100%);
  box-shadow: 0 0.85rem 1.8rem rgba(230, 0, 35, 0.18);
}

.calendar-done:hover {
  color: var(--white);
  background: linear-gradient(180deg, #f51b32 0%, var(--red-dark) 100%);
}

.calendar-action svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.primary-button {
  min-height: 4.75rem;
  padding: 0 1.2rem;
  font: inherit;
  font-size: 1.2rem;
  font-weight: 800;
}

.primary-button:hover,
.main-nav .nav-cta:hover {
  color: var(--white);
  background: linear-gradient(180deg, #f51b32 0%, var(--red-dark) 100%);
}

.note {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.note span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-weight: 900;
}

.counter-preview {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 40.6rem;
  padding: 3.35rem 2rem 3.15rem;
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  background:
    radial-gradient(circle at 50% 54%, rgba(228, 3, 28, 0.13) 0 4.4rem, transparent 10.5rem),
    rgba(255, 255, 255, 0.74);
  box-shadow: 0 2rem 4rem rgba(135, 28, 46, 0.06);
  overflow: hidden;
}

.counter-preview h2 {
  margin: 0 0 2rem;
  font-size: clamp(2.4rem, 3.3vw, 3.25rem);
  line-height: 1;
  text-align: center;
}

.counter-preview h2 span {
  font-family: inherit;
  font-size: 0.82em;
}

.photo-frame {
  display: grid;
  place-items: center;
  width: 15.5rem;
  height: 15.5rem;
  padding: 0.8rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff, #fff4f5);
  box-shadow: 0 0 0 0.55rem rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

.together {
  margin: 2.1rem 0 0.25rem;
  color: var(--muted);
  font-size: 1.42rem;
  font-weight: 500;
}

.days-number {
  margin: 0;
  font-size: clamp(4.6rem, 6.2vw, 5.4rem);
  line-height: 0.9;
}

.days-label {
  margin: -0.15rem 0 0;
  font-size: clamp(2.8rem, 4.2vw, 3.65rem);
  line-height: 0.95;
}

.floating-heart {
  position: absolute;
  color: #f7b5ba;
  font-size: 1.95rem;
  line-height: 1;
  opacity: 0.8;
}

.heart-one {
  top: 12rem;
  left: 4.1rem;
  transform: rotate(-18deg);
}

.heart-two {
  top: 11.1rem;
  right: 4.9rem;
  transform: rotate(15deg);
}

.heart-three {
  top: 20.5rem;
  left: 5.4rem;
  transform: rotate(-8deg);
}

.heart-four {
  top: 20.7rem;
  right: 4.6rem;
  transform: rotate(12deg);
}

.home-seo-section,
.home-final-cta,
.home-footer {
  width: min(78rem, calc(100% - 3rem));
  margin-right: auto;
  margin-left: auto;
}

.home-seo-section {
  padding: clamp(2.6rem, 6vw, 4.8rem) 0 0;
}

.home-section-heading {
  max-width: 54rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.home-section-heading h2,
.home-faq-copy h2,
.home-final-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 3.45rem);
  line-height: 1.05;
}

.home-section-heading p,
.home-faq-copy p,
.home-final-cta p {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.55;
}

.home-info-grid,
.home-feature-grid,
.home-use-grid {
  display: grid;
  gap: 1.1rem;
}

.home-info-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-feature-grid,
.home-use-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-info-card,
.home-feature-card,
.home-use-grid article,
.home-faq-list,
.home-final-cta {
  border: 1px solid #efe5e8;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1.1rem 2.4rem rgba(31, 26, 36, 0.035);
}

.home-info-card,
.home-feature-card,
.home-use-grid article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
  padding: clamp(1.35rem, 3vw, 2rem);
}

.home-calculator-card {
  grid-template-columns: auto minmax(0, 1fr) minmax(8.5rem, 10rem);
}

.home-calculator-card aside {
  display: grid;
  place-items: center;
  align-self: stretch;
  min-height: 9.4rem;
  padding: 1rem;
  border: 1px solid #efe5e8;
  border-radius: 1rem;
  background: #fff;
  text-align: center;
}

.home-calculator-card aside span,
.home-calculator-card aside small {
  color: var(--muted);
  font-weight: 800;
}

.home-calculator-card aside strong {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 0.95;
}

.home-icon {
  display: grid;
  place-items: center;
  width: 4.35rem;
  height: 4.35rem;
  border-radius: 50%;
  color: var(--red);
  background: #fff0f2;
  flex: 0 0 auto;
}

.home-icon svg {
  width: 2rem;
  height: 2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-info-card h3,
.home-feature-card h3,
.home-use-grid h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.15;
}

.home-info-card p,
.home-feature-card p,
.home-use-grid p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.6;
}

.home-use-grid article {
  grid-template-columns: 1fr;
}

.home-use-grid .home-icon {
  width: 4rem;
  height: 4rem;
}

.home-use-grid strong {
  margin-top: 0.6rem;
  color: var(--red);
  font-weight: 900;
}

.home-faq-section {
  display: grid;
  grid-template-columns: minmax(16rem, 22rem) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.home-faq-copy {
  padding-top: 1.3rem;
}

.home-faq-list {
  overflow: hidden;
}

.home-faq-list details {
  border-bottom: 1px solid #efe5e8;
}

.home-faq-list details:last-child {
  border-bottom: 0;
}

.home-faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
  padding: 0 1.55rem;
  color: var(--ink);
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.home-faq-list summary::-webkit-details-marker {
  display: none;
}

.home-faq-list summary::after {
  content: "";
  width: 0.62rem;
  height: 0.62rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.18s ease;
  flex: 0 0 auto;
}

.home-faq-list details[open] summary::after {
  transform: rotate(225deg);
}

.home-faq-list p {
  margin: 0;
  padding: 0 1.55rem 1.25rem;
  color: var(--muted);
  line-height: 1.55;
}

.home-final-cta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 1.5rem;
  align-items: center;
  margin-top: clamp(2.8rem, 6vw, 4.8rem);
  padding: clamp(1.5rem, 4vw, 2.2rem);
}

.home-final-button,
.home-final-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.6rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.home-final-button {
  padding: 0 2rem;
  border-radius: 0.7rem;
  color: #fff;
  background: var(--red);
  box-shadow: 0 0.9rem 1.8rem rgba(230, 0, 35, 0.14);
}

.home-final-link {
  color: var(--red);
}

.home-footer {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  padding: 2.2rem 0 2.8rem;
  color: var(--muted);
}

.home-footer a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 850;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.home-step-hint {
  margin: .45rem 0 0;
  color: #6b5f6f;
  font-size: .9rem;
  font-weight: 650;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 92px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    min-height: auto;
  }

  .hero-copy {
    max-width: none;
  }

  .counter-preview {
    width: min(100%, 35rem);
    margin: 0 auto;
  }

  .home-info-grid,
  .home-feature-grid,
  .home-use-grid,
  .home-faq-section,
  .home-final-cta {
    grid-template-columns: 1fr;
  }

  .home-calculator-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .home-calculator-card aside {
    grid-column: 1 / -1;
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .brand img {
    width: min(14rem, 70vw);
  }

  .main-nav {
    width: 100%;
    justify-content: space-between;
    gap: 0.8rem;
    font-size: 0.95rem;
  }

  .main-nav .nav-cta {
    padding: 0.82rem 1rem;
  }

  .hero {
    width: min(100% - 1.5rem, 42rem);
    padding-top: 2.2rem;
  }

  h1 {
    font-size: clamp(3.35rem, 17vw, 4.35rem);
  }

  .lead br {
    display: none;
  }

  .date-actions {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .date-card {
    padding: 1.1rem;
  }

  .date-picker {
    grid-template-columns: 1.35rem 1fr 1px 1.35rem;
    min-height: 4.25rem;
    font-size: 1.2rem;
  }

  .date-popover {
    width: min(100%, calc(100vw - 1.5rem));
    border-radius: 1.15rem;
  }

  .calendar-header {
    grid-template-columns: 2.5rem minmax(8.4rem, 1.35fr) minmax(5.6rem, 0.85fr) 2.5rem;
    padding: 1.45rem 1.1rem 1.15rem;
    gap: 0.55rem;
  }

  .calendar-select {
    min-height: 3.25rem;
    border-radius: 0.85rem;
  }

  .calendar-select select {
    height: 3.25rem;
    padding-right: 2.15rem;
    padding-left: 2.2rem;
    font-size: 1rem;
  }

  .calendar-year-select select {
    padding-left: 0.75rem;
  }

  .calendar-select svg {
    left: 0.75rem;
    width: 1.15rem;
    height: 1.15rem;
  }

  .calendar-select .select-arrow {
    right: 0.7rem;
    width: 1rem;
    height: 1rem;
  }

  .calendar-nav {
    width: 2.5rem;
    height: 2.5rem;
  }

  .calendar-weekdays,
  .calendar-grid {
    padding-right: 0.8rem;
    padding-left: 0.8rem;
  }

  .calendar-weekdays span {
    font-size: 0.9rem;
  }

  .calendar-grid {
    row-gap: 0.35rem;
  }

  .calendar-day {
    width: 2.55rem;
    height: 2.55rem;
    font-size: 1rem;
  }

  .calendar-footer {
    grid-template-columns: 1fr;
    padding: 1.2rem 1.1rem 1.3rem;
  }

  .calendar-action {
    font-size: 1.05rem;
  }

  .calendar-done {
    justify-self: stretch;
  }

  .primary-button {
    min-height: 4.25rem;
  }

  .counter-preview {
    min-height: 35rem;
    padding: 2.6rem 1rem 2.4rem;
    border-radius: 1.1rem;
  }

  .photo-frame {
    width: 13.2rem;
    height: 13.2rem;
  }

  .heart-one,
  .heart-three {
    left: 1.25rem;
  }

  .heart-two,
  .heart-four {
    right: 1.25rem;
  }

  .home-seo-section,
  .home-final-cta,
  .home-footer {
    width: min(100% - 1.5rem, 42rem);
  }

  .home-info-card,
  .home-feature-card {
    grid-template-columns: 1fr;
  }

  .home-final-button,
  .home-final-link {
    width: 100%;
  }

  .home-footer {
    flex-wrap: wrap;
  }
}

@media (max-width: 430px) {
  .main-nav {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 0.1rem;
  }

  .note {
    align-items: flex-start;
    font-size: 1rem;
  }

  .counter-preview h2 {
    font-size: 2.2rem;
  }
}
