/* =================================================================
   Maria Rica — Design System
   Aesthetic: refined feminine luxury · blush + gold · light mode
   Display: Cormorant Garamond · UI/body: Jost
   ================================================================= */

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

:root {
  /* — palette pulled from the logo — */
  --cream:        #FBF4F1;
  --cream-2:      #F6E8E5;
  --blush:        #F4D5DC;
  --blush-soft:   #FBE7EB;
  --rose:         #C9879A;
  --rose-deep:    #A85F73;
  --gold:         #C2A15B;
  --gold-deep:    #A6813C;
  --gold-soft:    #E4D2A6;
  --ink:          #4A2F2C;
  --ink-soft:     #7A625E;
  --line:         rgba(166,129,60,.30);
  --white:        #FFFFFF;

  --shadow-sm: 0 2px 10px rgba(168,95,115,.08);
  --shadow-md: 0 14px 40px -16px rgba(120,70,60,.28);
  --shadow-lg: 0 30px 70px -28px rgba(120,70,60,.38);

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;

  --ease: cubic-bezier(.22,.61,.36,1);

  --maxw: 1240px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui: 'Jost', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ui);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.6;
  background-color: var(--cream);
  background-image:
    radial-gradient(46rem 30rem at 88% -6%,  rgba(244,213,220,.65), transparent 60%),
    radial-gradient(40rem 30rem at -8% 12%,  rgba(228,210,166,.40), transparent 55%),
    radial-gradient(50rem 40rem at 50% 120%, rgba(244,213,220,.50), transparent 60%);
  background-attachment: fixed;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* grain / paper texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 3rem); position: relative; z-index: 2; }

/* ---------- typography helpers ---------- */
.eyebrow {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: .74rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.script { font-family: var(--font-display); font-style: italic; }

/* ---------- ornamental divider ---------- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  color: var(--gold);
}
.divider::before, .divider::after {
  content: '';
  height: 1px;
  width: clamp(40px, 12vw, 130px);
  background: linear-gradient(90deg, transparent, var(--gold));
}
.divider::after { background: linear-gradient(90deg, var(--gold), transparent); }
.divider .heart { font-size: .8rem; }

/* ---------- buttons ---------- */
.btn {
  --c: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.7rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: .04em;
  color: var(--c);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .35s, color .35s;
  white-space: nowrap;
}
.btn-gold {
  color: #fff;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  box-shadow: 0 12px 26px -12px rgba(166,129,60,.7);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 34px -12px rgba(166,129,60,.85); }
.btn-rose {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: linear-gradient(135deg, #F4A9C2 0%, #DD8AA4 50%, #C56F8A 100%);
  box-shadow: 0 10px 24px -10px rgba(197,111,138,.75), inset 0 1px 0 rgba(255,255,255,.5);
  letter-spacing: .08em;
}
.btn-rose::before {           /* brilho que desliza no hover (fica atrás do texto) */
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 34%, rgba(255,255,255,.55) 50%, transparent 66%);
  transform: translateX(-130%);
  transition: transform .8s var(--ease);
}
.btn-rose:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px -10px rgba(197,111,138,.92), inset 0 1px 0 rgba(255,255,255,.6);
}
.btn-rose:hover::before { transform: translateX(130%); }
.btn-ghost {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.5);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-deep); transform: translateY(-2px); }
.btn-sm { padding: .55rem 1.05rem; font-size: .82rem; }

/* ---------- brand emblem (SVG hanger-heart fallback) ---------- */
.emblem { width: 100%; height: 100%; }
.emblem path, .emblem circle { stroke: var(--gold-deep); }
