:root {
  --tk-cream: #f3ead9;
  --tk-card: #fbf7ef;
  --tk-burgundy-deep: #5c1a1f;
  --tk-burgundy: #8a2f34;
  --tk-burgundy-label: #7a2328;
  --tk-text: #4a3d38;
  --tk-shadow: rgba(90, 35, 40, 0.3);
}

*, *::before, *::after { box-sizing: border-box; }

@font-face {
  font-family: "Celestina Script";
  src: url("assets/celestina-script.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

html, body { margin: 0; }

body {
  background: var(--tk-cream);
  font-family: 'Noto Sans', sans-serif;
  padding-bottom: 160px;
  overflow-x: hidden;
  position: relative;
}

a { color: var(--tk-burgundy-label); text-decoration: none; }
a:hover { color: var(--tk-burgundy-deep); }

.fixed-background {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("assets/background-mobile.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media (min-width: 600px) {
  .fixed-background {
    background-image: url("assets/background-desktop.jpg");
    background-position: center center;
  }
}

.tk-sparkle {
  position: fixed;
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
  animation: tk-twinkle 4s ease-in-out infinite;
}
@keyframes tk-twinkle {
  0%, 100% { opacity: 0.25; transform: scale(0.85); }
  50% { opacity: 0.9; transform: scale(1.15); }
}

.tk-content {
  position: relative;
  z-index: 2;
  max-width: 460px;
  margin: 0 auto;
  padding: 56px 22px 40px;
}

.tk-section { margin-bottom: 56px; }
.tk-section:last-child { margin-bottom: 0; }

.tk-section.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s cubic-bezier(.22,.61,.36,1), transform 0.9s cubic-bezier(.22,.61,.36,1);
}
.tk-section.reveal.is-visible { opacity: 1; transform: translateY(0); }
html.no-motion .tk-section.reveal { opacity: 1; transform: none; transition: none; }

.tk-hero-card,
.tk-card {
  background: var(--tk-card);
  border-radius: 32px;
  padding: 34px 26px;
  box-shadow: 0 18px 40px -18px var(--tk-shadow);
}
.tk-hero-card { border-radius: 36px; padding: 40px 26px; }
.tk-card--bordered { border: 1px solid rgba(255,255,255,0.85); }

.tk-eyebrow {
  text-align: center;
  font-size: 14px;
  letter-spacing: 5px;
  color: var(--tk-burgundy-label);
  font-weight: 600;
  text-transform: uppercase;
}
.tk-name {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 60px;
  line-height: 1.1;
  color: var(--tk-burgundy-deep);
  margin: 18px 0 2px;
}

.tk-divider { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 28px 0; }
.tk-footer-divider { display: flex; align-items: center; justify-content: center; gap: 14px; }
.tk-divider-line { width: 56px; height: 1px; background: linear-gradient(to right, transparent, var(--tk-burgundy)); }
.tk-divider-line--r { background: linear-gradient(to left, transparent, var(--tk-burgundy)); }
.tk-footer-divider .tk-divider-line { width: 40px; }
.tk-divider-dot { width: 9px; height: 9px; background: var(--tk-burgundy); transform: rotate(45deg); }
.tk-footer-divider .tk-divider-dot { width: 7px; height: 7px; }

.tk-datetime {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  font-size: 17px; color: var(--tk-burgundy-deep); font-weight: 600; letter-spacing: 0.5px;
}
.tk-dot-sep { width: 5px; height: 5px; border-radius: 50%; background: var(--tk-burgundy); display: inline-block; }

.tk-quote-mark {
  text-align: center; font-size: 34px; color: var(--tk-burgundy); line-height: 1;
  margin-bottom: 8px; font-family: 'Playfair Display', serif;
}
.tk-invite-text { text-align: center; font-size: 17px; line-height: 1.75; color: var(--tk-text); font-style: italic; }

.tk-hosts { text-align: center; }
.tk-hosts-label {
  font-size: 13px; letter-spacing: 3px; color: var(--tk-burgundy-label);
  text-transform: uppercase; font-weight: 600; margin-bottom: 10px;
}
.tk-host { font-family: 'Playfair Display', serif; font-style: italic; font-size: 26px; color: var(--tk-burgundy-deep); }

.tk-heading {
  text-align: center; font-family: 'Playfair Display', serif; font-weight: 600;
  font-size: 28px; color: var(--tk-burgundy-deep); margin-bottom: 36px;
}

.tk-timeline { position: relative; padding-left: 8px; }
.tk-timeline-line {
  position: absolute; left: 38px; top: 6px; bottom: 6px; width: 1px;
  background: linear-gradient(to bottom, rgba(122,47,52,0.05), rgba(122,47,52,0.55), rgba(122,47,52,0.05));
}
.tk-timeline-item { position: relative; display: flex; gap: 22px; align-items: flex-start; margin-bottom: 30px; }
.tk-timeline-item:last-child { margin-bottom: 0; }
.tk-timeline-time { width: 56px; flex-shrink: 0; text-align: right; font-size: 14px; font-weight: 700; color: var(--tk-burgundy-label); padding-top: 2px; }
.tk-timeline-marker { position: relative; flex-shrink: 0; width: 20px; display: flex; justify-content: center; padding-top: 4px; }
.tk-timeline-dot { width: 11px; height: 11px; border-radius: 50%; background: #fff8ee; border: 2px solid var(--tk-burgundy); z-index: 1; }
.tk-timeline-title { flex: 1; font-size: 15.5px; line-height: 1.5; color: var(--tk-text); padding-top: 2px; }

.tk-photo-wrap { position: relative; max-width: 300px; margin: 0 auto; transform: rotate(-2.5deg); }
.tk-photo-card { background: #fffaf4; border-radius: 6px; padding: 14px 14px 46px; box-shadow: 0 24px 48px -20px rgba(70,25,30,0.4); }
.tk-photo-img-wrap { width: 100%; aspect-ratio: 4/5; border-radius: 2px; overflow: hidden; background: #eee; }
.tk-photo-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tk-ribbon {
  position: absolute; top: -14px; left: -34px;
  background: linear-gradient(135deg, var(--tk-burgundy), #45141a);
  color: var(--tk-card); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 18px; transform: rotate(-8deg); box-shadow: 0 8px 16px -6px rgba(70,20,25,0.5);
  clip-path: polygon(0 0, 100% 0, 92% 50%, 100% 100%, 0 100%, 8% 50%);
}

.tk-venue-card { text-align: center; }
.tk-venue-label { font-size: 13px; letter-spacing: 3px; color: var(--tk-burgundy-label); text-transform: uppercase; font-weight: 600; margin-bottom: 14px; }
.tk-venue-hall { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 600; font-size: 24px; color: var(--tk-burgundy-deep); margin-bottom: 8px; }
.tk-venue-address { font-size: 15px; color: var(--tk-text); line-height: 1.6; }
.tk-map-btn {
  display: inline-block; margin-top: 22px;
  background: linear-gradient(135deg, var(--tk-burgundy), var(--tk-burgundy-deep));
  color: var(--tk-card) !important; font-size: 14px; font-weight: 700; letter-spacing: 1px;
  padding: 14px 32px; border-radius: 999px; box-shadow: 0 14px 30px -12px rgba(90,30,35,0.55);
}
