:root {
  --pink: #a21e5c;
  --pink-dark: #791344;
  --pink-soft: #f8e4ef;
  --cream: #fff8ef;
  --peach: #ffd6bf;
  --teal: #317c7b;
  --gold: #d9a441;
  --ink: #352333;
  --muted: #745e70;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(96, 38, 74, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--cream);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(162, 30, 92, 0.18), transparent 34rem),
    radial-gradient(circle at bottom right, rgba(255, 214, 191, 0.85), transparent 28rem),
    linear-gradient(145deg, #fff8ef 0%, #fff0f5 100%);
}

a {
  color: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 32px 0;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 38px;
  align-items: center;
  min-height: calc(100vh - 64px);
  padding: 46px;
  overflow: hidden;
  border: 1px solid rgba(162, 30, 92, 0.12);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  width: 180px;
  height: 180px;
  left: -52px;
  bottom: 64px;
  background: rgba(217, 164, 65, 0.26);
}

.hero::after {
  width: 116px;
  height: 116px;
  top: 54px;
  right: 42%;
  background: rgba(49, 124, 123, 0.14);
}

.hero-content,
.hero-picture {
  position: relative;
  z-index: 1;
}

.brand-logo {
  display: block;
  width: min(260px, 72vw);
  height: auto;
  margin-bottom: 44px;
  padding: 14px 18px;
  border-radius: 22px;
  background: var(--pink);
  filter: drop-shadow(0 12px 24px rgba(162, 30, 92, 0.14));
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--pink-dark);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--pink-soft);
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--pink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: 0.93;
  letter-spacing: -0.055em;
}

.intro {
  max-width: 590px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button,
.text-link {
  min-height: 48px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--pink);
  box-shadow: 0 16px 32px rgba(162, 30, 92, 0.25);
}

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

.button-secondary {
  color: var(--pink-dark);
  background: var(--white);
  box-shadow: inset 0 0 0 2px rgba(162, 30, 92, 0.18);
}

.hero-picture {
  display: grid;
  min-height: 520px;
  place-items: center;
}

.hero-picture img {
  position: relative;
  width: min(100%, 480px);
  aspect-ratio: 1;
  object-fit: cover;
  border: 14px solid var(--white);
  border-radius: 48% 52% 42% 58% / 56% 46% 54% 44%;
  box-shadow: 0 26px 60px rgba(53, 35, 51, 0.18);
}

.blob {
  position: absolute;
  inset: 48px 14px auto auto;
  width: 82%;
  aspect-ratio: 1;
  border-radius: 45% 55% 62% 38% / 44% 50% 50% 56%;
  background: linear-gradient(135deg, var(--peach), var(--pink-soft));
}

.floating-note {
  position: absolute;
  right: 0;
  bottom: 54px;
  max-width: 210px;
  padding: 16px 18px;
  border-radius: 24px 24px 8px 24px;
  color: var(--pink-dark);
  font-weight: 800;
  line-height: 1.25;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(96, 38, 74, 0.14);
}

.resources {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.card {
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 45px rgba(96, 38, 74, 0.1);
}

.shop-card {
  background: linear-gradient(160deg, #ffffff 0%, #fff1e8 100%);
}

.advice-card {
  background: linear-gradient(160deg, #ffffff 0%, #edf8f7 100%);
}

.contact-card {
  color: var(--white);
  background: linear-gradient(160deg, var(--pink) 0%, var(--pink-dark) 100%);
}

.card-icon {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--pink-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.78);
}

.card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.12;
}

.card p {
  margin-bottom: 22px;
  color: var(--muted);
  line-height: 1.6;
}

.contact-card p,
.contact-card .card-icon {
  color: var(--pink-dark);
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--pink);
}

.text-link::after {
  content: "";
  width: 32px;
  height: 2px;
  margin-left: 10px;
  border-radius: 999px;
  background: currentColor;
  transition: width 180ms ease;
}

.text-link:hover::after {
  width: 44px;
}

address {
  display: grid;
  gap: 8px;
  font-style: normal;
  line-height: 1.45;
}

address a {
  color: var(--white);
  font-weight: 800;
  text-decoration-color: rgba(255, 255, 255, 0.48);
  text-underline-offset: 4px;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 30px;
  }

  .brand-logo {
    margin-bottom: 32px;
  }

  .hero-picture {
    min-height: 420px;
  }

  .hero-picture img {
    width: min(100%, 420px);
  }

  .resources {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding: 10px 0;
  }

  .hero {
    padding: 22px;
    border-radius: 30px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-picture {
    min-height: 320px;
  }

  .hero-picture img {
    border-width: 9px;
    border-radius: 34px;
  }

  .floating-note {
    right: 10px;
    bottom: 18px;
    max-width: 175px;
    font-size: 0.9rem;
  }

  .card {
    padding: 22px;
    border-radius: 24px;
  }
}
