@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Montserrat:wght@300;400;500;600&family=Parisienne&display=swap");

:root {
  --rose: #b91646;
  --deep-rose: #760725;
  --paper: #ffffff;
  --cream: #fff7fa;
  --blush: #fde8ef;
  --ink: #09090a;
  --muted: #5d5458;
  --line: #ead4dc;
  --white: #ffffff;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
  --script: "Parisienne", cursive;
  --shadow: 0 24px 70px rgba(117, 7, 37, 0.12);
  --speed: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(185, 22, 70, 0.08),
      transparent 18%
    ),
    radial-gradient(circle at 88% 55%, rgba(9, 9, 10, 0.04), transparent 20%),
    linear-gradient(180deg, var(--paper), #fff8fb 48%, var(--cream));
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
.brand-logo,
.footer-logo {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 860px;
  font-size: clamp(3rem, 7vw, 6.4rem);
}

h2 {
  max-width: 780px;
  font-size: clamp(2.2rem, 4.6vw, 4.2rem);
}

h3 {
  font-size: 1.55rem;
}

p {
  color: var(--muted);
  font-size: 0.96rem;
}

.page-container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  padding: 22px 0;
  color: var(--white);
  transition:
    background var(--speed),
    box-shadow var(--speed),
    color var(--speed),
    padding var(--speed);
}

.main-nav.is-scrolled {
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 35px rgba(9, 9, 10, 0.08);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  color: currentColor;
  font-size: 1.7rem;
  text-decoration: none;
}

.strawberry-heart-icon {
  width: 0.60em;
  height: 0.60em;
  flex: 0 0 auto;
  margin-right: 2px;
  transform: translateY(0.06em);
  background: center / contain no-repeat url("strawberry-heart.svg");
}

.brand-love {
  color: var(--rose);
  font-family: var(--script);
  font-size: 1.2em;
  font-weight: 400;
  line-height: 0.8;
  text-transform: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
}

.nav-menu a {
  color: currentColor;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0.84;
  transition:
    color var(--speed),
    opacity var(--speed);
}

.nav-menu a:hover {
  color: var(--rose);
  opacity: 1;
}

.hero-section {
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 100px 0 120px;
  background:
    linear-gradient(90deg, rgba(9, 9, 10, 0.74), rgba(118, 7, 37, 0.26)),
    url("assets/images/strawberry-hero.jpg")
      center/cover no-repeat;
  color: var(--white);
  text-align: center;
}

.hero-section::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -1px;
  left: -10%;
  height: 76px;
  background: var(--paper);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 24px;
  width: min(920px, calc(100% - 40px));
}

.hero-content p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
}

.hero-brand {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.hero-brand-name {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1;
}

.hero-brand-name .strawberry-heart-icon {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.28));
}

.hero-brand-name .brand-love {
  color: #ffdce7;
}

.section-kicker {
  display: inline-block;
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-section .section-kicker {
  color: #ffdce7;
}

.action-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background var(--speed),
    color var(--speed),
    border-color var(--speed),
    transform var(--speed);
}

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

.action-button--light {
  background: var(--white);
  color: var(--ink);
}

.action-button--light:hover {
  border-color: var(--white);
  background: transparent;
  color: var(--white);
}

.action-button--dark {
  background: var(--ink);
  color: var(--white);
}

.action-button--outline {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.action-button--outline:hover,
.action-button--dark:hover {
  border-color: var(--rose);
  background: var(--rose);
  color: var(--white);
}

.content-section {
  position: relative;
  padding: clamp(78px, 10vw, 132px) 0;
}

.section-heading {
  display: grid;
  justify-items: center;
  gap: 16px;
  margin-bottom: clamp(44px, 7vw, 78px);
  text-align: center;
}

.section-heading--left {
  justify-items: start;
  margin-bottom: 0;
  text-align: left;
}

.section-heading p {
  max-width: 560px;
}

.challenge-section {
  overflow: hidden;
}

.challenge-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 86px);
}

.challenge-panel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.challenge-panel::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(185, 22, 70, 0.16);
  pointer-events: none;
}

.challenge-card {
  position: relative;
  z-index: 1;
  min-height: 176px;
  display: grid;
  align-content: space-between;
  gap: 20px;
  padding: 26px;
  background: var(--white);
}

.challenge-card span {
  color: var(--rose);
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1;
}

.challenge-card--featured {
  background: var(--ink);
  color: var(--cream);
}

.challenge-card--featured strong {
  align-self: center;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 500;
  line-height: 1;
}

.solution-section {
  overflow: hidden;
  background: var(--paper);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.78fr);
  align-items: center;
  gap: clamp(44px, 7vw, 88px);
}

.split-copy {
  display: grid;
  gap: 22px;
}

.split-copy p {
  max-width: 600px;
}

.clean-list {
  display: grid;
  gap: 12px;
  margin-top: 10px;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-size: 0.95rem;
}

.clean-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--rose);
}

.image-composition {
  border-radius: 999px 999px 0 0;
  width: 100%;
  height: 600px;
  background:
    linear-gradient(90deg, rgba(9, 9, 10, 0.74), rgba(118, 7, 37, 0.26)),
    url("assets/images/strawberry-cta.jpg")
      center/cover no-repeat;
}

.image-composition::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid var(--line);
  border-radius: inherit;
}

.features-section {
  overflow: hidden;
  background: var(--cream);
}

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

.feature-card {
  position: relative;
  min-height: 260px;
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: inherit;
  text-decoration: none;
  transition:
    border-color var(--speed),
    transform var(--speed),
    box-shadow var(--speed);
}

.feature-card::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-right: 1px solid rgba(185, 22, 70, 0.26);
  border-bottom: 1px solid rgba(185, 22, 70, 0.26);
}

.feature-card:hover {
  border-color: rgba(185, 22, 70, 0.55);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
  transition: 0.5s;
}

.feature-card--wide {
  grid-column: span 4;
  background: linear-gradient(135deg, var(--white), var(--blush));
}

.feature-number {
  color: var(--rose);
  font-family: var(--serif);
  font-size: 2.8rem;
  line-height: 1;
}

.feature-card h3 {
  margin-top: auto;
  margin-bottom: 12px;
}

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

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

.plan-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 34px 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  text-align: center;
  transition:
    border-color var(--speed),
    box-shadow var(--speed),
    transform var(--speed);
}

.plan-card:hover {
  transition: 0.5s;
  border-color: var(--rose);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.plan-card--highlight {
  background: var(--blush);
  border-color: rgba(185, 22, 70, 0.55);
  box-shadow: var(--shadow);
}

.plan-label {
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.plan-price {
  margin: 20px 0 24px;
  color: var(--deep-rose);
  font-family: var(--serif);
  font-size: 2.6rem;
  line-height: 1;
}

.plan-card ul {
  display: grid;
  gap: 10px;
  margin-bottom: 30px;
  list-style: none;
  text-align: left;
}

.plan-card li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.86rem;
}

.plan-card li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--rose);
}

.plan-card .action-button {
  width: 100%;
  margin-top: auto;
}

.examples-section {
  overflow: hidden;
  background: var(--cream);
}

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

.example-card {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink);
}

.example-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition:
    opacity var(--speed),
    transform var(--speed);
}

.example-card:hover img {
  opacity: 0.92;
  transform: scale(1.04);
}

.example-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(9, 9, 10, 0.74),
    rgba(118, 7, 37, 0.26)
  );
}

.example-card div {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 28px;
  background: linear-gradient(180deg, transparent, rgba(9, 9, 10, 0.8));
  color: var(--white);
}

.example-card span {
  display: block;
  margin-bottom: 8px;
  color: #ffdce7;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer {
  padding: 76px 0 36px;
  border-top: 1px solid var(--line);
  background: var(--paper);
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 2rem;
  text-decoration: none;
}

.site-footer p {
  max-width: 560px;
  margin: 0 auto;
}

.copyright {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  margin-top: 14px !important;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  color: #9a9189;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .challenge-layout,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .section-heading--left,
  .split-copy,
  .split-copy h2,
  .split-copy p {
    justify-items: center;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
  }

  .clean-list {
    width: min(460px, 100%);
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .feature-card,
  .feature-card--wide {
    grid-column: span 3;
  }

  .plan-grid,
  .example-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .page-container {
    width: min(100% - 28px, 1140px);
  }

  .main-nav {
    padding: 14px 0;
  }

  .nav-inner {
    flex-direction: column;
    gap: 10px;
  }

  .nav-menu {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 18px;
  }

  .hero-section {
    background-position: 58% center;
  }

  .challenge-panel,
  .feature-grid,
  .plan-grid,
  .example-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card--wide {
    grid-column: span 1;
  }

  .challenge-card {
    min-height: 150px;
  }

  .floral-accent {
    width: 140px;
    opacity: 0.45;
  }

  .action-button {
    width: 100%;
    max-width: 340px;
  }
}
