.how-page {
  min-height: 100vh;
  padding-bottom: 80px;
}

.how-hero {
  padding-top: 54px;
}

.how-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.85fr);
  gap: 48px;
  align-items: start;
}

.how-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--olive);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.how-kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
}

.how-title {
  margin: 12px 0 0;
  font-family: "Fraunces", "Georgia", "Times New Roman", serif;
  color: var(--wine);
  font-size: clamp(3.625rem, 7vw, 5.75rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
  font-weight: 800;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}

.how-copy {
  margin: 58px 0 0;
  max-width: 500px;
}

.how-intro {
  margin: 0;
  font-size: 1.3125rem;
  line-height: 1.48;
  color: #4b3839;
}

.how-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.how-actions .primary-btn {
  width: min(100%, 240px);
  min-height: 48px;
  padding: 16px 22px;
  white-space: nowrap;
}

.how-cards {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.how-card {
  min-height: 394px;
  padding: 24px 22px 20px;
  border: 1px solid rgba(65, 24, 29, 0.1);
  border-radius: 6px;
  background: rgba(255, 250, 245, 0.5);
  box-shadow: 0 18px 40px rgba(65, 24, 29, 0.05);
  display: flex;
  flex-direction: column;
}

.how-num {
  color: var(--olive);
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.how-card h2 {
  margin: 18px 0 10px;
  font-family: "Fraunces", "Georgia", "Times New Roman", serif;
  color: var(--wine);
  font-size: 1.75rem;
  line-height: 1;
  font-style: italic;
  font-weight: 700;
  font-variation-settings: "opsz" 72, "SOFT" 30;
}

.how-card p {
  margin: 0;
  color: #5d4748;
  font-size: 1.0625rem;
  line-height: 1.55;
}

.how-meta {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(65, 24, 29, 0.08);
  color: var(--olive);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.how-icon,
.how-swatches,
.how-format,
.how-envelope {
  margin-top: 20px;
  margin-bottom: 10px;
}

.shutter-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #fffaf5 0 16%, #8c4144 17% 21%, #572127 22% 100%);
  box-shadow: 0 10px 22px rgba(65, 24, 29, 0.14);
  position: relative;
}

.shutter-icon span {
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 1px solid rgba(255, 250, 245, 0.18);
}

.how-swatches {
  display: flex;
  gap: 8px;
}

.swatch {
  width: 56px;
  height: 78px;
  border-radius: 4px;
  border: 1px solid rgba(65, 24, 29, 0.08);
}

.swatch.silk { background: #efe1d3; }
.swatch.sage { background: #b7b79b; }
.swatch.blush { background: #d8b9b1; }
.swatch.burgundy { background: #65252a; }

.how-format {
  width: 54px;
  padding: 8px;
  background: #fffaf5;
  border-radius: 4px;
  border: 1px solid rgba(65, 24, 29, 0.08);
  transform: rotate(-7deg);
  box-shadow: 0 10px 24px rgba(65, 24, 29, 0.08);
}

.how-format span {
  display: block;
  height: 12px;
  margin-bottom: 6px;
  background: #f3e5d8;
  border-radius: 2px;
}

.how-format span:last-child {
  margin-bottom: 0;
}

.how-envelope {
  width: 74px;
  height: 54px;
  background: linear-gradient(135deg, #7c2d33 0 50%, #5a2025 50% 100%);
  border-radius: 2px;
  position: relative;
  box-shadow: 0 12px 26px rgba(65, 24, 29, 0.14);
}

.how-envelope span {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #fffaf5;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 1024px) {
  .how-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .how-hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .how-hero {
    padding-top: 28px;
  }

  .how-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .how-title {
    font-size: clamp(2.75rem, 14vw, 4.25rem);
    line-height: 1;
  }

  .how-copy {
    margin-top: 0;
    max-width: 640px;
  }

  .how-intro {
    font-size: 1.125rem;
  }

  .how-actions {
    margin-top: 22px;
  }
}
