:root {
  --cream:        #FAF6F0;
  --cream-warm:   #F5EDE3;
  --blush-pale:   #FDE8EF;
  --blush:        #F2C4CE;
  --blush-mid:    #EDAFC0;
  --dusty-rose:   #D4889A;
  --rose-deep:    #B96880;
  --warm-brown:   #8B5E52;
  --brown-mid:    #6E4840;
  --brown-dark:   #3D2420;
  --text-body:    #4A3530;
  --text-light:   #7A5C56;
  --white:        #FFFFFF;
  --gold:         #C9A96E;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --transition:   all 0.35s ease;
  --radius:       16px;
  --shadow-soft:  0 8px 32px rgba(180,100,120,0.10);
  --shadow-hover: 0 20px 52px rgba(180,100,120,0.22);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text-body);
  overflow-x: hidden;
  line-height: 1.72;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--blush-pale); }
::-webkit-scrollbar-thumb { background: var(--dusty-rose); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--rose-deep); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--brown-dark);
  line-height: 1.15;
}

img { max-width: 100%; }
.bow-pattern {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='70' viewBox='0 0 90 70'%3E%3Cg fill='%23D4889A' opacity='0.10'%3E%3Cellipse cx='22' cy='35' rx='18' ry='10' transform='rotate(-15 22 35)'/%3E%3Cellipse cx='68' cy='35' rx='18' ry='10' transform='rotate(15 68 35)'/%3E%3Ccircle cx='45' cy='35' r='5'/%3E%3Cline x1='36' y1='35' x2='54' y2='35' stroke='%23D4889A' stroke-width='2' opacity='0.5'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
}

.bow-pattern-hero {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='70' viewBox='0 0 90 70'%3E%3Cg fill='%23D4889A' opacity='0.22'%3E%3Cellipse cx='22' cy='35' rx='18' ry='10' transform='rotate(-15 22 35)'/%3E%3Cellipse cx='68' cy='35' rx='18' ry='10' transform='rotate(15 68 35)'/%3E%3Ccircle cx='45' cy='35' r='5'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* ============================================================
   ANIMATIONS
============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-up.visible   { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: 0.10s; }
.fade-up.d2 { transition-delay: 0.20s; }
.fade-up.d3 { transition-delay: 0.30s; }
.fade-up.d4 { transition-delay: 0.42s; }

/* ============================================================
   NAVBAR
============================================================ */
.maleno-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 2rem;
  transition: var(--transition);
}

.maleno-nav.scrolled {
  background: rgba(250, 246, 240, 0.84);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border-bottom: 1px solid rgba(212,136,154,0.18);
  padding: 0.75rem 2rem;
  box-shadow: 0 2px 28px rgba(180,100,120,0.08);
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--warm-brown) !important;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-logo:hover { color: var(--rose-deep) !important; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0; padding: 0;
}

.nav-link-item {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown-mid);
  padding: 0.4rem 0.9rem;
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}
.nav-link-item::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%;
  width: 0; height: 1.5px;
  background: var(--dusty-rose);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.nav-link-item:hover { color: var(--rose-deep); }
.nav-link-item:hover::after { width: 72%; }

.nav-toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3rem;
  display: none;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle-btn span {
  display: block;
  width: 22px; height: 2px;
  background: var(--warm-brown);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(250, 246, 240, 0.97);
  backdrop-filter: blur(24px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--brown-dark);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.3s;
}
.mobile-nav-link:hover { color: var(--rose-deep); }
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.8rem;
  background: none; border: none;
  font-size: 1.6rem;
  color: var(--warm-brown);
  cursor: pointer;
  line-height: 1;
}

/* ============================================================
   HERO
============================================================ */
#home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-color: var(--blush-pale);
  padding: 100px 1.5rem 80px;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-bg-layer.pattern { z-index: 1; }
.hero-bg-layer.overlay {
  z-index: 2;
  background: linear-gradient(
    150deg,
    rgba(253,232,239,0.78) 0%,
    rgba(250,246,240,0.60) 42%,
    rgba(242,196,206,0.50) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 780px;
  width: 100%;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  margin-bottom: 1.4rem;
}

.hero-title {
  font-size: clamp(3.4rem, 9vw, 7rem);
  font-weight: 300;
  color: var(--brown-dark);
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  color: var(--rose-deep);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  font-weight: 300;
  letter-spacing: 0.03em;
  margin-bottom: 2.8rem;
}

.cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-rose {
  background: var(--dusty-rose);
  color: var(--white);
  border: 1.5px solid var(--dusty-rose);
  padding: 0.85rem 2.3rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
  box-shadow: 0 4px 22px rgba(212,136,154,0.38);
}
.btn-rose:hover {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(212,136,154,0.46);
}

.btn-ghost-rose {
  background: transparent;
  color: var(--warm-brown);
  border: 1.5px solid var(--dusty-rose);
  padding: 0.85rem 2.3rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
}
.btn-ghost-rose:hover {
  background: var(--blush);
  color: var(--brown-dark);
  transform: translateY(-3px);
}

/* Scroll chevron */
.scroll-cue {
  position: absolute;
  bottom: 2.2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: cue-bounce 2.2s ease infinite;
}
.scroll-cue i { color: var(--dusty-rose); font-size: 1.3rem; opacity: 0.6; }
@keyframes cue-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* ============================================================
   MARQUEE
============================================================ */
.marquee-strip {
  background: var(--dusty-rose);
  padding: 0.95rem 0;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
}
.marquee-inner {
  display: inline-flex;
  animation: marquee-scroll 32s linear infinite;
}
.marquee-inner:hover { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 2.6rem;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SECTION SHARED STYLES
============================================================ */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  margin-bottom: 0.9rem;
}
.section-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 300;
  color: var(--brown-dark);
  margin-bottom: 0.9rem;
}
.section-sub {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 300;
  max-width: 500px;
}

/* ============================================================
   SHOP
============================================================ */
#shop {
  background-color: var(--cream);
  padding: 6.5rem 0;
}

.cat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.6rem 2rem 2.2rem;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(212,136,154,0.12);
  box-shadow: var(--shadow-soft);
  height: 100%;
}
.cat-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(212,136,154,0.28);
}
.cat-icon {
  font-size: 2.9rem;
  display: block;
  margin-bottom: 1.1rem;
  line-height: 1;
}
.cat-title {
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--brown-dark);
  margin-bottom: 0.55rem;
}
.cat-desc {
  font-size: 0.87rem;
  color: var(--text-light);
  margin-bottom: 1.6rem;
  line-height: 1.65;
}
.btn-explore {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  border: 1.5px solid var(--dusty-rose);
  padding: 0.52rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
}
.btn-explore:hover {
  background: var(--dusty-rose);
  color: var(--white);
  transform: scale(1.03);
}

/* ============================================================
   SIZING GUIDE
============================================================ */
#sizing {
  background: linear-gradient(145deg, var(--blush-pale) 0%, var(--cream-warm) 100%);
  padding: 6.5rem 0;
}

.method-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.6rem 2.2rem;
  box-shadow: var(--shadow-soft);
  height: 100%;
  border: 1px solid rgba(212,136,154,0.1);
}
.method-title {
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--brown-dark);
  margin-bottom: 1.6rem;
}
.s-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.step-num {
  flex-shrink: 0;
  width: 26px; height: 26px;
  background: var(--blush);
  color: var(--warm-brown);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 600;
  margin-top: 0.18rem;
}
.step-text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.65;
}
.step-text strong { color: var(--warm-brown); }

.method-note {
  background: var(--blush-pale);
  border: 1.5px solid var(--blush);
  border-radius: 12px;
  padding: 0.9rem 1.2rem;
  font-size: 0.84rem;
  color: var(--brown-mid);
  margin-top: 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  line-height: 1.6;
}

/* Sizing table */
.size-table-wrap {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.sizing-table {
  width: 100%;
  border-collapse: collapse;
}
.sizing-table thead tr {
  background: var(--dusty-rose);
}
.sizing-table th {
  padding: 1rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
}
.sizing-table td {
  padding: 0.82rem 1.2rem;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-body);
  border-bottom: 1px solid rgba(212,136,154,0.09);
}
.sizing-table tbody tr:nth-child(even) { background: var(--blush-pale); }
.sizing-table tbody tr:last-child td { border-bottom: none; }
.sizing-table tbody tr:hover { background: rgba(212,136,154,0.1); }
.size-label {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--rose-deep);
}

/* ============================================================
   ABOUT
============================================================ */
#about {
  background-color: var(--cream);
  padding: 6.5rem 0;
}

.about-visual {
  background: linear-gradient(140deg, var(--blush-pale), var(--blush));
  border-radius: 28px;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
}
.about-emoji {
  font-size: 5.5rem;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 24px rgba(212,136,154,0.3));
}
.about-badge {
  position: absolute;
  bottom: 1.6rem; right: 1.6rem;
  background: var(--white);
  border-radius: 50px;
  padding: 0.5rem 1.1rem;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--warm-brown);
  box-shadow: 0 4px 18px rgba(180,100,120,0.16);
  letter-spacing: 0.05em;
  z-index: 2;
}
.about-ribbon {
  position: absolute;
  top: 1.4rem; left: -0.8rem;
  background: var(--dusty-rose);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 1.4rem;
  border-radius: 0 50px 50px 0;
  z-index: 2;
}

.about-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 300;
  color: var(--rose-deep);
  line-height: 1.45;
  margin: 1.8rem 0;
  padding-left: 1.6rem;
  border-left: 3px solid var(--blush-mid);
}
.about-text {
  font-size: 0.97rem;
  color: var(--text-light);
  line-height: 1.9;
  font-weight: 300;
}
.about-text strong { color: var(--warm-brown); font-weight: 500; }
.about-sig {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--warm-brown);
  margin-top: 1.8rem;
}

/* ============================================================
   REVIEWS
============================================================ */
#reviews {
  background: linear-gradient(145deg, var(--blush-pale) 0%, var(--cream-warm) 100%);
  padding: 6.5rem 0 5rem;
  overflow: hidden;
}

.reviews-scroll-outer {
  overflow-x: auto;
  padding: 1rem 0 1.4rem;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--blush) transparent;
}
.reviews-scroll-outer::-webkit-scrollbar { height: 4px; }
.reviews-scroll-outer::-webkit-scrollbar-track { background: transparent; }
.reviews-scroll-outer::-webkit-scrollbar-thumb { background: var(--blush); border-radius: 2px; }
.reviews-scroll-outer:active { cursor: grabbing; }

.reviews-track {
  display: flex;
  gap: 1.5rem;
  padding: 0 max(1.5rem, calc((100vw - 1140px)/2 + 1.5rem));
  width: max-content;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  width: 295px;
  flex-shrink: 0;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(212,136,154,0.1);
  transition: var(--transition);
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.review-qmark {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  line-height: 0.8;
  color: var(--blush);
  display: block;
  margin-bottom: 0.6rem;
}
.review-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.8rem;
}
.review-text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 1.3rem;
}
.review-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--warm-brown);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.review-handle {
  font-size: 0.78rem;
  color: var(--dusty-rose);
  margin-top: 0.15rem;
}

/* ============================================================
   CONTACT
============================================================ */
#contact {
  background-color: var(--cream);
  padding: 6.5rem 0;
}

.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.3rem;
}
.contact-icon-box {
  width: 44px; height: 44px;
  background: var(--blush-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--dusty-rose);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.c-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  display: block;
  margin-bottom: 0.15rem;
}
.c-value {
  font-size: 0.95rem;
  color: var(--text-body);
}

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.8rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(212,136,154,0.1);
}

.f-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-brown);
  margin-bottom: 0.45rem;
}
.f-input {
  width: 100%;
  border: 1.5px solid rgba(212,136,154,0.25);
  border-radius: 10px;
  padding: 0.78rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-body);
  background: var(--cream);
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  outline: none;
  display: block;
}
.f-input:focus {
  border-color: var(--dusty-rose);
  box-shadow: 0 0 0 3px rgba(212,136,154,0.13);
  background: var(--white);
}
.f-input::placeholder { color: #C7ADAB; }

.btn-send {
  width: 100%;
  background: var(--warm-brown);
  color: var(--white);
  border: none;
  padding: 0.95rem 2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 22px rgba(139,94,82,0.3);
}
.btn-send:hover {
  background: var(--brown-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(139,94,82,0.38);
}
.form-success {
  display: none;
  text-align: center;
  color: var(--rose-deep);
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 1rem;
}

/* ============================================================
   FOOTER
============================================================ */
.maleno-footer {
  background: var(--brown-dark);
  padding: 4.5rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.maleno-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='70' viewBox='0 0 90 70'%3E%3Cg fill='%23FFFFFF' opacity='0.04'%3E%3Cellipse cx='22' cy='35' rx='18' ry='10' transform='rotate(-15 22 35)'/%3E%3Cellipse cx='68' cy='35' rx='18' ry='10' transform='rotate(15 68 35)'/%3E%3Ccircle cx='45' cy='35' r='5'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--blush) !important;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.45);
}
.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.4rem;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--dusty-rose);
  border-color: var(--dusty-rose);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.1rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--blush); }

.footer-note {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
}
.footer-note-sig {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.3);
  margin-top: 0.5rem;
}

hr.footer-rule {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 2.5rem 0 1.5rem;
}
.footer-bottom {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
  .nav-desktop { display: none !important; }
  .nav-toggle-btn { display: flex; }
  .maleno-nav { padding: 1.1rem 1.25rem; }
  .maleno-nav.scrolled { padding: 0.8rem 1.25rem; }
}

@media (max-width: 767px) {
  #home { padding: 90px 1.25rem 3.5rem; }
  .about-visual { aspect-ratio: 1 / 1; }
  .form-card { padding: 1.8rem 1.4rem; }
  .reviews-track { padding: 0 1.25rem; }
}

@media (max-width: 480px) {
  .cta-group { flex-direction: column; align-items: center; }
  .btn-rose, .btn-ghost-rose { width: 100%; text-align: center; }
}


/* ============================================================
   LEGAL PAGES (Privacy Policy / Terms & Conditions)
============================================================ */
.legal-topbar {
  background: var(--white);
  border-bottom: 1px solid var(--blush);
  position: sticky;
  top: 0;
  z-index: 999;
}
.legal-back {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--warm-brown);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition);
}
.legal-back:hover { color: var(--rose-deep); }

.legal-hero {
  background-color: var(--cream-warm);
  border-bottom: 1px solid var(--blush);
  padding: 3.5rem 0 2.5rem;
}
.legal-eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  margin-bottom: 0.6rem;
}
.legal-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 0.5rem;
}
.legal-meta {
  font-size: 0.85rem;
  color: var(--text-light);
}

.legal-body {
  padding: 3.5rem 0 5rem;
}
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}
.legal-intro {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  border-left: 3px solid var(--blush-mid);
  padding-left: 1.2rem;
  margin-bottom: 2.5rem;
}
.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--warm-brown);
  margin-top: 2.2rem;
  margin-bottom: 0.7rem;
}
.legal-content p,
.legal-content li {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-body);
}
.legal-content ul {
  padding-left: 1.4rem;
  margin-bottom: 0.9rem;
}
.legal-content li { margin-bottom: 0.35rem; }
.legal-content a {
  color: var(--warm-brown);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-content a:hover { color: var(--rose-deep); }
.legal-content strong { color: var(--brown-dark); }

/* Footer legal links */
.footer-legal-links {
  font-size: 0.82rem;
  color: var(--text-light);
}
.footer-legal-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.25s;
}
.footer-legal-links a:hover { color: var(--blush-mid); }


/* ============================================================
   INNER PAGES — shared layout
============================================================ */
.page-breadcrumbs {
  padding: calc(80px + 1.5rem) 0 0.75rem;
  background: transparent;
  font-size: 0.85rem;
}
.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.45rem;
  color: var(--text-light);
}
.breadcrumb-item a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.25s;
}
.breadcrumb-item a:hover { color: var(--rose-deep); }
.breadcrumb-item.current {
  color: var(--brown-dark);
  font-weight: 500;
}
.breadcrumb-sep {
  color: var(--blush-mid);
  font-size: 1rem;
  line-height: 1;
}

.page-hero {
  position: relative;
  padding: 2.5rem 0 3.5rem;
  background: linear-gradient(180deg, var(--cream) 0%, var(--blush-pale) 100%);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.6;
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.page-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  color: var(--dusty-rose);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.page-h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--brown-dark);
  margin: 0 0 1.25rem;
}
.page-intro {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-light);
  max-width: 720px;
  margin: 0 auto 1.5rem;
}
.page-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 1.25rem;
}

.content-section {
  padding: 4.5rem 0;
}
.content-section.pad-tight { padding: 3rem 0; }
.content-section.pad-bottom-0 { padding-bottom: 0; }
.content-section.bg-blush-pale { background: var(--blush-pale); }
.content-section.bg-cream { background: var(--cream-warm); }

.content-narrow {
  max-width: 760px;
  margin: 0 auto;
}
.content-narrow p,
.content-narrow li {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 1rem;
}
.content-narrow ul,
.content-narrow ol {
  padding-left: 1.4rem;
  margin-bottom: 1.2rem;
}
.content-narrow a {
  color: var(--rose-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.25s;
}
.content-narrow a:hover { color: var(--warm-brown); }
.content-narrow strong { color: var(--brown-dark); }

.content-h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 400;
  color: var(--brown-dark);
  margin: 2.2rem 0 1rem;
  line-height: 1.25;
}
.content-narrow > .content-h2:first-child { margin-top: 0; }

/* ============================================================
   VALUE CARDS (homepage + about)
============================================================ */
.value-card {
  background: var(--white);
  border: 1px solid rgba(212,136,154,0.18);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.value-icon {
  font-size: 2.2rem;
  margin-bottom: 0.85rem;
}
.value-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--brown-dark);
  margin-bottom: 0.5rem;
}
.value-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}
.value-text a { color: var(--rose-deep); }

/* ============================================================
   SHOP — category cards link variant + shape cards
============================================================ */
.cat-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.cat-card-link:hover { text-decoration: none; }

.shape-card {
  display: block;
  background: var(--white);
  border: 1px solid rgba(212,136,154,0.18);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}
.shape-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  text-decoration: none;
  color: inherit;
}
.shape-card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--brown-dark);
  margin-bottom: 0.6rem;
}
.shape-card-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 1.1rem;
}
.shape-card-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

/* ============================================================
   FAQ
============================================================ */
.faq-section { padding: 4rem 0; background: transparent; }
.faq-list {
  max-width: 760px;
}
.faq-item {
  background: var(--white);
  border: 1px solid rgba(212,136,154,0.18);
  border-radius: 14px;
  margin-bottom: 0.85rem;
  padding: 0;
  transition: var(--transition);
}
.faq-item[open] {
  box-shadow: var(--shadow-soft);
  border-color: rgba(212,136,154,0.4);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.3rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--brown-dark);
  list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-icon {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--dusty-rose);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 1.3rem 1.25rem;
  font-size: 0.93rem;
  line-height: 1.8;
  color: var(--text-body);
}
.faq-answer p { margin-bottom: 0.6rem; }

/* ============================================================
   BLOG
============================================================ */
.blog-card {
  height: 100%;
}
.blog-card-link {
  display: block;
  background: var(--white);
  border: 1px solid rgba(212,136,154,0.18);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}
.blog-card-link:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  text-decoration: none;
  color: inherit;
}
.blog-card-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  margin-bottom: 0.85rem;
}
.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--brown-dark);
  line-height: 1.25;
  margin-bottom: 0.7rem;
}
.blog-card-excerpt {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 1.1rem;
}
.blog-card-meta {
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}
.blog-card-cta {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

/* Blog post hero */
.blog-post-hero {
  position: relative;
  padding: 2rem 0 3rem;
  background: linear-gradient(180deg, var(--cream) 0%, var(--blush-pale) 100%);
  overflow: hidden;
}
.blog-post-hero-inner {
  position: relative;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.blog-post-title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--brown-dark);
  margin: 1rem 0 1rem;
}
.blog-post-excerpt {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-light);
  max-width: 680px;
  margin: 0 auto 1.4rem;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
}
.blog-post-meta {
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.blog-post-meta a { color: var(--rose-deep); text-decoration: none; }
.blog-post-meta a:hover { color: var(--warm-brown); }

.blog-prose h2 { margin-top: 2.4rem; }
.blog-prose ul,
.blog-prose ol {
  padding-left: 1.4rem;
  margin-bottom: 1.2rem;
}
.blog-prose ul li,
.blog-prose ol li {
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 0.5rem;
}
.blog-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem 0;
  font-size: 0.92rem;
}
.blog-prose table th,
.blog-prose table td {
  padding: 0.6rem 0.8rem;
  border-bottom: 1px solid rgba(212,136,154,0.2);
  text-align: left;
}
.blog-prose table th {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--brown-dark);
  background: var(--cream-warm);
}
.blog-prose code {
  background: var(--blush-pale);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-size: 0.88em;
  color: var(--brown-mid);
}

.inline-cta {
  margin: 2.2rem 0 1rem;
  text-align: center;
}

.author-bio {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.author-bio-emoji {
  font-size: 2rem;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}
.author-bio-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--brown-dark);
  margin-bottom: 0.25rem;
}
.author-bio-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}
.author-bio-text a { color: var(--rose-deep); }
