/* ====== Base ====== */
:root{
  --bg1:#fff0f3;
  --bg2:#ffe4ec;
  --bg3:#ffd6e2;
  --card:#ffffffdd;
  --text:#2d2328;
  --pink:#e84393;
  --pink-soft:#ff6b9d;
  --pink-glow: rgba(232,67,147,.15);
  --rose: #f8b4c8;
  --shadow: 0 8px 32px rgba(0,0,0,.06);
  --shadow-lg: 0 16px 48px rgba(232,67,147,.12);
  --radius: 20px;
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: var(--font-sans);
  color:var(--text);
  background: linear-gradient(160deg, var(--bg1) 0%, var(--bg2) 50%, var(--bg3) 100%);
  min-height:100vh;
  overflow-x:hidden;
  line-height:1.6;
}

/* ====== Refined Header / Topbar ====== */
.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(16px) saturate(1.6);
  -webkit-backdrop-filter: blur(16px) saturate(1.6);
  background: rgba(255,255,255,.5);
  border-bottom: 1px solid rgba(232,67,147,.08);
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 24px;
  transition: box-shadow .3s ease;
}
.topbar:hover{
  box-shadow: 0 4px 20px rgba(232,67,147,.06);
}

.brand{
  display:flex; gap:12px; align-items:center;
}
.brandText{
  font-family: var(--font-serif);
  font-weight:600;
  font-size: 1.15rem;
  letter-spacing: .3px;
  color: var(--text);
}
.ampersand{
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--pink);
  font-weight:400;
  padding: 0 2px;
}

/* Heartbeat dot animation */
.heartbeat-dot{
  width:10px; height:10px; border-radius:99px;
  background: var(--pink);
  box-shadow: 0 0 0 5px rgba(232,67,147,.15);
  animation: heartbeat 2s ease-in-out infinite;
}
@keyframes heartbeat{
  0%, 100%{ transform: scale(1); box-shadow: 0 0 0 5px rgba(232,67,147,.15); }
  14%{ transform: scale(1.25); box-shadow: 0 0 0 8px rgba(232,67,147,.2); }
  28%{ transform: scale(1); box-shadow: 0 0 0 5px rgba(232,67,147,.15); }
  42%{ transform: scale(1.18); box-shadow: 0 0 0 7px rgba(232,67,147,.18); }
  56%{ transform: scale(1); }
}

.nav{ display:flex; gap:6px; align-items:center; flex-wrap:wrap; }
.nav a{
  text-decoration:none;
  color: rgba(45,35,40,.7);
  font-family: var(--font-sans);
  font-weight:500;
  font-size:.9rem;
  padding: 8px 14px;
  border-radius: 999px;
  transition: all .2s ease;
  letter-spacing:.1px;
}
.nav a:hover{
  background: rgba(232,67,147,.06);
  color: var(--pink);
}
.navCta{
  background: linear-gradient(135deg, rgba(232,67,147,.1), rgba(255,107,157,.12)) !important;
  color: var(--pink) !important;
  font-weight:600 !important;
  border: 1px solid rgba(232,67,147,.12);
}
.navCta:hover{
  background: linear-gradient(135deg, rgba(232,67,147,.16), rgba(255,107,157,.18)) !important;
  box-shadow: 0 4px 16px rgba(232,67,147,.12);
}

/* ====== Layout ====== */
.container{ max-width:1060px; margin:0 auto; padding:32px 20px 80px; }
.section{ padding:48px 0; }

/* ====== Typography ====== */
h1{
  margin: 8px 0;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -.5px;
  line-height: 1.15;
  color: var(--text);
}
h1 .heartEmoji{
  color: var(--pink);
  font-style: italic;
}
h2{
  margin:0 0 18px;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.8vw, 2.3rem);
  font-weight: 600;
  letter-spacing: -.3px;
  color: var(--text);
}
h3{
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
}
.sub{
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 58ch;
  color: rgba(45,35,40,.8);
}
.center{ text-align:center; margin-left:auto; margin-right:auto; }
.micro{
  font-size: .88rem;
  color: rgba(45,35,40,.55);
  line-height: 1.55;
  font-weight: 400;
}

/* ====== Hero ====== */
.hero{
  display:grid;
  grid-template-columns: 1.3fr .85fr;
  gap: 32px;
  align-items:center;
  padding-top: 24px;
}
.chip{
  display:inline-flex;
  padding: 8px 16px;
  border-radius:999px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(232,67,147,.1);
  font-weight:500;
  font-size:.85rem;
  color: rgba(45,35,40,.7);
  font-style: italic;
}
.heroButtons{ display:flex; gap:12px; margin:20px 0 6px; flex-wrap:wrap; }

.photoRing{
  width:280px; height:280px; border-radius:999px; padding:10px; margin:0 auto;
  background: radial-gradient(circle at 30% 30%, rgba(232,67,147,.2), rgba(248,180,200,.15), rgba(255,255,255,.5));
  box-shadow: var(--shadow-lg);
  transition: transform .4s ease, box-shadow .4s ease;
}
.photoRing:hover{
  transform: scale(1.03);
  box-shadow: 0 20px 56px rgba(232,67,147,.18);
}
.photoRing img{
  width:100%; height:100%; object-fit:cover; border-radius:999px;
  border: 6px solid rgba(255,255,255,.8);
}
.miniCard{
  margin:18px auto 0; max-width:340px;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(232,67,147,.08);
  box-shadow: var(--shadow);
  padding:18px;
  transition: transform .3s ease;
}
.miniCard:hover{ transform: translateY(-2px); }
.miniTitle{
  font-family: var(--font-serif);
  font-weight:600;
  font-size: 1rem;
  margin-bottom:8px;
  color: var(--pink);
  font-style: italic;
}
.miniText{
  font-size:.95rem;
  line-height:1.65;
  color: rgba(45,35,40,.75);
  font-style: italic;
}

/* ====== Cards & Tiles ====== */
.card{
  background: var(--card);
  border: 1px solid rgba(232,67,147,.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  line-height: 1.8;
  font-size: 1.02rem;
  color: rgba(45,35,40,.82);
}
.card p + p{ margin-top: 12px; }
.pillRow{ display:flex; flex-wrap:wrap; gap:10px; margin-top:16px; }
.pill{
  padding: 8px 14px;
  border-radius:999px;
  background: linear-gradient(135deg, rgba(232,67,147,.08), rgba(255,107,157,.1));
  color: var(--pink);
  font-weight:600;
  font-size: .88rem;
  border: 1px solid rgba(232,67,147,.12);
  transition: transform .2s ease, box-shadow .2s ease;
}
.pill:hover{
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(232,67,147,.1);
}

.grid3{ display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; }
.tile{
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(232,67,147,.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 18px;
  min-height:160px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.tile:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.tileIcon{ font-size:1.5rem; }
.tileTitle{
  font-family: var(--font-serif);
  font-weight:700;
  font-size: 1.12rem;
  margin: 8px 0;
  color: var(--text);
}
.tileText{
  color: rgba(45,35,40,.72);
  line-height: 1.65;
  font-size: .95rem;
}

/* ====== Gallery ====== */
.gallery-intro{
  margin-bottom: 20px;
  font-style: italic;
}
.gallery{ display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; margin-top:8px; }
.shot{
  margin:0;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(232,67,147,.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.shot:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.shot img{
  width:100%; height:240px; object-fit:cover; display:block;
  transition: transform .4s ease;
}
.shot:hover img{ transform: scale(1.04); }
.shot figcaption{
  padding: 12px 14px 14px;
  font-family: var(--font-serif);
  font-weight:600;
  font-size: 1rem;
  color: rgba(45,35,40,.8);
  font-style: italic;
}

/* ====== Question Section ====== */
.question{ text-align:center; }
.question-text{ margin-bottom: 8px; }
.big-question{
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--pink);
  margin: 12px 0 8px;
  font-style: italic;
  letter-spacing: -.3px;
  text-shadow: 0 2px 16px rgba(232,67,147,.12);
}

/* ====== Buttons ====== */
.btn{
  border:0; cursor:pointer;
  border-radius:999px;
  padding: 12px 20px;
  font-family: var(--font-sans);
  font-weight:700;
  font-size: .92rem;
  letter-spacing:.2px;
  transition: all .2s ease;
  text-decoration: none;
  display: inline-block;
}
.btn:active{ transform: translateY(1px) scale(.98); }
.btn.primary{
  background: linear-gradient(135deg, var(--pink), var(--pink-soft));
  color:#fff;
  box-shadow: 0 8px 24px rgba(232,67,147,.25);
}
.btn.primary:hover{
  box-shadow: 0 12px 32px rgba(232,67,147,.35);
  transform: translateY(-1px);
}
.btn.secondary{
  background: rgba(45,35,40,.07);
  color: rgba(45,35,40,.72);
}
.btn.secondary:hover{
  background: rgba(45,35,40,.1);
}
.btn.ghost{
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(232,67,147,.12);
  color: var(--text);
}
.btn.ghost:hover{
  background: rgba(255,255,255,.9);
  border-color: rgba(232,67,147,.2);
}
.btn.big{
  padding: 16px 28px;
  font-size: 1.05rem;
  min-width: 160px;
}
.btnRow{
  display:flex; gap:14px;
  justify-content:center;
  margin-top:20px;
  flex-wrap:wrap;
}

/* ====== Modal ====== */
.modal{
  position:fixed; inset:0;
  display:flex; align-items:center; justify-content:center;
  padding:18px;
  background: rgba(45,35,40,.3);
  backdrop-filter: blur(4px);
  z-index:80;
}
.modalContent{
  width:min(520px,95vw);
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(232,67,147,.1);
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(232,67,147,.2);
  padding: 28px 24px 20px;
  text-align:center;
  animation: pop .25s ease-out;
}
.modalContent p{
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(45,35,40,.78);
}
.modalActions{ display:flex; gap:10px; justify-content:center; margin-top:16px; flex-wrap:wrap; }
.hidden{ display:none; }
@keyframes pop{
  from{ transform: scale(.94) translateY(8px); opacity:0; }
  to{ transform:scale(1) translateY(0); opacity:1; }
}

/* ====== Falling hearts ====== */
.heart{
  position: fixed;
  top: -30px;
  width: 18px; height: 18px;
  background: var(--pink);
  transform: rotate(45deg);
  opacity: .85;
  z-index: 1;
  pointer-events:none;
  border-radius: 3px;
  box-shadow: 0 8px 16px rgba(232,67,147,.14);
}
.heart::before,.heart::after{
  content:'';
  position:absolute;
  width: 18px; height: 18px;
  background: var(--pink);
  border-radius:50%;
}
.heart::before{ top:-9px; left:0; }
.heart::after{ left:-9px; top:0; }
@keyframes fall{
  0%{ transform: translateY(-10px) rotate(45deg); opacity:0; }
  10%{ opacity:.85; }
  100%{ transform: translateY(110vh) rotate(45deg); opacity:0; }
}

/* ====== Fade-in animations ====== */
.section{
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .7s ease forwards;
}
.section:nth-child(1){ animation-delay: 0s; }
.section:nth-child(2){ animation-delay: .1s; }
.section:nth-child(3){ animation-delay: .2s; }
.section:nth-child(4){ animation-delay: .3s; }
.section:nth-child(5){ animation-delay: .4s; }

@keyframes fadeUp{
  to{ opacity:1; transform: translateY(0); }
}

/* ====== Responsive ====== */
@media (max-width: 860px){
  .hero{ grid-template-columns:1fr; text-align: center; }
  .heroLeft .sub{ margin-left:auto; margin-right:auto; }
  .heroButtons{ justify-content: center; }
  .chip{ margin-left:auto; margin-right:auto; }
  .photoRing{ width:240px; height:240px; }
  .grid3{ grid-template-columns:1fr; }
  .gallery{ grid-template-columns: repeat(2, 1fr); }
  .nav{ display:none; }
  .topbar{ padding: 12px 16px; }
  .container{ padding: 20px 14px 60px; }
}
@media (max-width: 520px){
  .gallery{ grid-template-columns:1fr; }
}

/* ====== Selection color ====== */
::selection{
  background: rgba(232,67,147,.2);
  color: var(--text);
}
