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

:root {
  --cream: #faf7f2;
  --blush: #f5e6e0;
  --navy: #2d4a6b;
  --dusty-blue: #6b8cae;
  --gold: #c9a84c;
  --pink: #d4667a;
  --mauve: #b8748a;
  --dark: #1a1a1a;
  --text: #3a3a3a;
  --light-text: #7a7a7a;
}

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

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* TICKER */
.ticker-wrap {
  background: linear-gradient(90deg, var(--navy), #4a6fa5, var(--mauve));
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: ticker 35s linear infinite;
}
.ticker-track span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.92);
  text-transform: uppercase;
  padding: 0 32px;
}
.ticker-track span::after { content: ' ✦ '; color: var(--gold); }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* NAV */
nav {
  background: var(--cream);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(180,160,140,0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo img { height: 54px; width: auto; }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--pink); }
.nav-cta {
  background: var(--navy) !important;
  color: white !important;
  padding: 10px 22px;
  border-radius: 30px;
}
.nav-cta:hover { background: var(--pink) !important; }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); display: block; transition: 0.3s; }
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
}
.mobile-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--navy);
  color: white;
  padding: 15px 32px;
  border-radius: 40px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
  font-family: 'Jost', sans-serif;
}
.btn-primary:hover { background: var(--pink); }
.btn-pink {
  display: inline-block;
  background: var(--pink);
  color: white;
  padding: 15px 32px;
  border-radius: 40px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
  font-family: 'Jost', sans-serif;
}
.btn-pink:hover { background: var(--mauve); }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  padding: 14px 30px;
  border-radius: 40px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid var(--navy);
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--navy); color: white; }

/* FOOTER */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 40px 40px;
  text-align: center;
}
footer img { height: 60px; margin-bottom: 24px; opacity: 0.85; }
.footer-links {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer-links a {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.footer-legal {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  line-height: 1.8;
}

/* SECTION LABEL */
.section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-label::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--gold);
}

/* TAGS */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 30px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.tag-pink { background: rgba(212,102,122,0.1); color: var(--pink); border: 1px solid rgba(212,102,122,0.25); }
.tag-blue { background: rgba(107,140,174,0.1); color: var(--navy); border: 1px solid rgba(107,140,174,0.25); }
.tag-gold { background: rgba(201,168,76,0.1); color: #8a6b1a; border: 1px solid rgba(201,168,76,0.3); }

@media (max-width: 768px) {
  nav { padding: 12px 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  footer { padding: 40px 20px 30px; }
}

/* ── SCRAPBOOK ADDITIONS TO SHARED STYLE ── */
.btn-gradient {
  display: inline-block;
  background: linear-gradient(135deg, #d4667a, #b8748a, #2d4a6b);
  color: white;
  padding: 15px 34px;
  border-radius: 40px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  box-shadow: 0 4px 20px rgba(212,102,122,0.35);
}
.btn-gradient:hover { opacity: 0.9; transform: translateY(-2px); }

.gold-foil {
  background: linear-gradient(90deg, #c9a84c, #f0d060, #c9a84c, #a8832a, #f0d060);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }

.stamp {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  border: 3px solid currentColor;
  padding: 8px 14px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: rotate(8deg);
  opacity: 0.75;
  position: relative;
  line-height: 1.4;
  text-align: center;
}
.stamp::before { content: ''; position: absolute; inset: 3px; border: 1px solid currentColor; opacity: 0.5; }
.stamp-red { color: #c0392b; border-color: #c0392b; }
.stamp-navy { color: #2d4a6b; border-color: #2d4a6b; }
.stamp-gold { color: #8a6b1a; border-color: #8a6b1a; }

.washi {
  display: inline-block;
  padding: 5px 24px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: rotate(-1.5deg);
}
.washi-pink { background: rgba(212,102,122,0.35); color: #3a3a3a; }
.washi-blue { background: rgba(107,140,174,0.35); color: #3a3a3a; }
.washi-gold { background: rgba(201,168,76,0.35); color: #3a3a3a; }

.sticker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.4);
}
.sticker-pink { background: linear-gradient(135deg, #e8839a, #d4667a); color: white; }
.sticker-blue { background: linear-gradient(135deg, #5a7fa0, #2d4a6b); color: white; }
.sticker-gold { background: linear-gradient(135deg, #d4a843, #c9a84c); color: white; }
.sticker-blush { background: linear-gradient(135deg, #f5e6e0, #eecfc5); color: #8a4a5a; border: 1px solid rgba(212,102,122,0.3); }
