:root {
  --blush: #f8e0df;
  --blush-deep: #f2bdce;
  --cream: #fff6f8;
  --pink-soft: #f7d4df;
  --pink-bright: #e985b7;
  --ink: #25151d;
  --muted: #765462;
  --berry: #d94fb3;
  --berry-dark: #b83291;
  --teal: #1f6c70;
  --sage: #69845f;
  --line: rgba(37, 21, 29, 0.28);
  --shadow: 0 18px 50px rgba(154, 65, 113, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  font-family: "Nunito Sans", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--cream) 0%, var(--blush) 30%, #f5d2dd 100%);
  line-height: 1.5;
}

body {
  margin: 0;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: white;
  padding: 0.75rem 1rem;
  z-index: 20;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  background: rgba(255, 247, 251, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.35rem;
  aspect-ratio: 1;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--berry), var(--pink-bright));
  border-radius: 50%;
  font-family: "Nunito Sans", "Segoe UI", system-ui, sans-serif;
  font-size: 0.82rem;
}

.site-nav a,
.site-footer a {
  color: var(--muted);
  font-size: 0.95rem;
  text-decoration: none;
}

.site-nav a:hover,
.site-footer a:hover,
.text-link:hover {
  color: var(--ink);
}

.hero {
  min-height: min(760px, calc(100svh - 5rem));
  display: grid;
  align-items: end;
  padding: clamp(5rem, 12vw, 9rem) clamp(1rem, 6vw, 5rem) clamp(4rem, 8vw, 7rem);
  background-color: var(--blush-deep);
  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 780px;
  color: white;
}

.hero h1,
.page-hero h1,
.product-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero p {
  max-width: 650px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.section,
.page-hero,
.product-hero {
  padding: clamp(3.5rem, 7vw, 7rem) clamp(1rem, 4vw, 3rem);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.narrow {
  width: min(780px, 100%);
}

.two-column,
.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.intro-band {
  background: var(--cream);
}

.soft-band {
  background: linear-gradient(180deg, #fff7fb 0%, #ffd3e4 100%);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffe0ed;
}

h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  line-height: 1.08;
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.9rem, 4vw, 3.6rem);
}

h3 {
  margin: 1.5rem 0 0.6rem;
  font-size: 1.35rem;
}

.subtitle {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.35rem;
  color: white;
  background: linear-gradient(180deg, #df63b7, var(--berry));
  border: 0;
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(217, 79, 179, 0.28);
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  background: linear-gradient(180deg, var(--berry), var(--berry-dark));
}

.button-secondary {
  color: var(--ink);
  background: #fff;
}

.button-wide {
  width: 100%;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.product-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.product-card,
.article-card,
.link-card,
.activity-block,
.callout,
.signup-form,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 229, 229, 0.9);
  box-shadow: var(--shadow);
}

.product-card {
  overflow: hidden;
}

.product-card img,
.article-image img,
.product-image-frame img {
  width: 100%;
  object-fit: cover;
}

.product-card img {
  aspect-ratio: 1.35;
}

.product-card-body,
.article-card,
.activity-block,
.callout {
  padding: 1.2rem;
}

.product-card h2,
.article-card h2 {
  font-size: 1.35rem;
}

.product-card h2 a,
.article-card h2 a {
  text-decoration: none;
}

.product-card p,
.article-card p,
.rich-text,
.fine-print,
.disclosure {
  color: var(--muted);
}

.product-card-placeholder {
  aspect-ratio: 1.35;
  background:
    linear-gradient(135deg, rgba(233, 133, 183, 0.52), rgba(31, 108, 112, 0.14)),
    var(--cream);
}

.product-card-placeholder.large {
  min-height: 520px;
}

.price {
  color: var(--berry-dark);
  font-weight: 900;
}

.price span {
  margin-left: 0.35rem;
  color: var(--muted);
  font-weight: 700;
  text-decoration: line-through;
}

.price-large {
  font-size: 1.45rem;
}

.product-hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--pink-soft) 100%);
}

.product-image-frame {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.fact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.fact-list div {
  min-width: 9rem;
  padding: 0.85rem;
  border-left: 4px solid var(--sage);
  background: rgba(255, 255, 255, 0.64);
}

.fact-list dt {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.fact-list dd {
  margin: 0;
  font-weight: 800;
}

.signup-form {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

.signup-form.inline {
  margin-top: 2rem;
}

label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-weight: 800;
}

input {
  width: 100%;
  min-height: 3.1rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(217, 79, 179, 0.18);
  border-radius: 8px;
  background: #f8dce6;
  font: inherit;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

details {
  padding: 1rem 1.1rem;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

.article-image {
  width: min(1180px, calc(100% - 2rem));
  margin: -2rem auto 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.links-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 5rem);
  min-height: 100svh;
  padding: clamp(2rem, 6vw, 5rem);
}

.profile-panel {
  align-self: center;
  text-align: center;
}

.profile-photo {
  display: grid;
  width: 11rem;
  aspect-ratio: 1;
  margin: 0 auto 1.4rem;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--pink-bright), var(--berry));
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  box-shadow: var(--shadow);
}

.profile-panel h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.links-panel {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.link-stack {
  display: grid;
  gap: 0.85rem;
}

.link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  text-decoration: none;
}

.link-card small {
  display: block;
  color: var(--muted);
}

.link-action {
  flex: 0 0 auto;
  color: white;
  background: linear-gradient(180deg, #df63b7, var(--berry));
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-weight: 900;
}

.messages {
  width: min(1000px, calc(100% - 2rem));
  margin: 1rem auto 0;
}

.message {
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem clamp(1rem, 4vw, 3rem);
  background: var(--ink);
  color: white;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 900px) {
  .site-header,
  .site-footer,
  .links-layout,
  .two-column,
  .product-hero-grid {
    grid-template-columns: 1fr;
  }

  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .product-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 680px;
  }

  .links-layout {
    display: grid;
  }
}

@media (max-width: 560px) {
  .section-heading,
  .button-row,
  .link-card {
    align-items: stretch;
    flex-direction: column;
  }

  .link-action {
    text-align: center;
  }
}

/* Honeypot field: hidden from humans, present for naive bots. */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
