:root {
  --bg: #fbf8f5;
  --paper: #ffffff;
  --ink: #2e2a2d;
  --muted: #6f666b;
  --rose: #a14f68;
  --rose-dark: #813b52;
  --rose-soft: #f2dfe6;
  --sage: #7c927f;
  --line: #eadfe3;
  --shadow: 0 24px 70px rgba(76, 44, 57, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Nunito", system-ui, sans-serif;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem clamp(1.2rem, 4vw, 4rem);
  background: rgba(251, 248, 245, .9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(234, 223, 227, .85);
}
.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; }
.brand-mark {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--rose); color: white;
  font-family: "Cormorant Garamond", serif; font-size: 1.25rem; font-weight: 700;
}
.brand strong, .brand small { display: block; }
.brand strong { font-family: "Cormorant Garamond", serif; font-size: 1.35rem; line-height: 1; }
.brand small { color: var(--muted); font-size: .72rem; margin-top: .2rem; letter-spacing: .08em; text-transform: uppercase; }
nav { display: flex; gap: 1.5rem; }
nav a { text-decoration: none; font-size: .95rem; font-weight: 700; }
nav a:hover { color: var(--rose); }

.hero {
  min-height: 78vh;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 7rem);
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 7vw, 8rem);
  background: radial-gradient(circle at 80% 30%, #f4dfe6 0, #f7e8ed 22%, transparent 46%), linear-gradient(135deg, #fff 0%, #fbf3f6 50%, #f6eee8 100%);
}
.hero-content, .hero-card { position: relative; z-index: 2; }
.eyebrow { margin: 0 0 .6rem; color: var(--rose); font-weight: 800; letter-spacing: .14em; text-transform: uppercase; font-size: .78rem; }
h1, h2, h3 { font-family: "Cormorant Garamond", serif; line-height: 1.05; }
h1 { font-size: clamp(3.4rem, 8vw, 7rem); margin: 0 0 1.3rem; max-width: 10ch; }
h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); margin: .2rem 0 1rem; }
h3 { font-size: 1.8rem; margin: .5rem 0 .5rem; }
.intro { max-width: 650px; font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--muted); }
.button {
  display: inline-flex; margin-top: 1.2rem; padding: .9rem 1.4rem; border-radius: 999px;
  background: var(--rose); color: white; text-decoration: none; font-weight: 800;
  box-shadow: 0 12px 28px rgba(161, 79, 104, .22);
}
.button:hover { background: var(--rose-dark); transform: translateY(-1px); }
.hero-card {
  justify-self: center;
  width: min(390px, 100%);
  aspect-ratio: 4 / 5;
  border-radius: 45% 45% 44% 44% / 38% 38% 54% 54%;
  background: linear-gradient(160deg, #ad6078, #7f4156);
  color: white;
  display: grid;
  place-items: center;
  padding: 3rem;
  text-align: center;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.hero-card p { font-family: "Cormorant Garamond", serif; font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.2; }
.hero-card .spark, .hero-card .paw { position: absolute; font-size: 2rem; opacity: .8; }
.hero-card .spark { top: 15%; left: 18%; }
.hero-card .paw { bottom: 15%; right: 18%; font-size: 3rem; }
.hero-decoration { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .45; }
.hero-decoration-one { width: 220px; height: 220px; background: #c9d4c8; bottom: -80px; left: 8%; }
.hero-decoration-two { width: 120px; height: 120px; border: 2px solid #be8295; top: 12%; right: 7%; }

.section { padding: clamp(4rem, 9vw, 8rem) clamp(1.5rem, 7vw, 8rem); }
.about { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 7vw, 8rem); align-items: start; }
.about-text { font-size: 1.1rem; color: var(--muted); max-width: 760px; }

.lulu-section {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
  gap: clamp(2rem, 7vw, 7rem); align-items: center;
  background: var(--paper);
}
.lulu-image-wrap { position: relative; }
.lulu-image-wrap img {
  width: 100%; max-height: 720px; object-fit: cover; object-position: center 35%;
  border-radius: 34px 120px 34px 34px;
  box-shadow: var(--shadow);
}
.image-badge {
  position: absolute; left: 1.2rem; bottom: 1.2rem;
  padding: .65rem 1rem; border-radius: 999px;
  background: rgba(255,255,255,.9); backdrop-filter: blur(10px);
  color: var(--rose-dark); font-weight: 800;
}
.lulu-copy p { font-size: 1.1rem; color: var(--muted); }
blockquote {
  margin: 2rem 0 0; padding: 1.4rem 1.6rem;
  border-left: 4px solid var(--rose);
  background: var(--rose-soft); border-radius: 0 18px 18px 0;
  font-family: "Cormorant Garamond", serif; font-size: 1.6rem;
}

.interests { text-align: center; }
.section-heading { max-width: 700px; margin: 0 auto 3rem; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card {
  padding: 2rem; background: var(--paper); border: 1px solid var(--line); border-radius: 26px;
  box-shadow: 0 18px 45px rgba(76, 44, 57, .06);
}
.card p { color: var(--muted); }
.icon { font-size: 2.2rem; }
.notice { margin: 0 clamp(1.5rem, 7vw, 8rem) 5rem; padding: 1.4rem 2rem; border-radius: 20px; text-align: center; background: #e9efe8; color: #536456; }
footer { padding: 2rem; text-align: center; border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; }

@media (max-width: 820px) {
  nav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 5rem; }
  .hero-card { width: min(320px, 85vw); }
  .about, .lulu-section { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .lulu-image-wrap img { border-radius: 28px 80px 28px 28px; }
}

@media (prefers-reduced-motion: no-preference) {
  .button, .card { transition: .2s ease; }
  .card:hover { transform: translateY(-5px); box-shadow: 0 24px 55px rgba(76, 44, 57, .1); }
}
