/* Magic Photo: shared styles. Page-specific CSS stays inline in each HTML file. */

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

html { scroll-behavior: smooth; }

body {
  background-color: #0a0a0a;
  color: #f0ece4;
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Fade-up / fade-in animations */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 1.1s ease; }
.fade-in.visible { opacity: 1; }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.25s; }
.delay-3 { transition-delay: 0.4s; }
.delay-4 { transition-delay: 0.55s; }
.delay-5 { transition-delay: 0.7s; }

/* Gold accent line */
.gold-line { width: 48px; height: 1px; background: #c9a84c; display: block; }

/* Grain overlay */
.grain::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
}

/* Buttons */
.btn-gold {
  display: inline-block;
  border: 1px solid #c9a84c;
  color: #c9a84c;
  padding: 14px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  cursor: pointer;
}
.btn-gold:hover { background: #c9a84c; color: #0a0a0a; }

.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(240,236,228,0.25);
  color: rgba(240,236,228,0.7);
  padding: 14px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}
.btn-ghost:hover { border-color: rgba(240,236,228,0.6); color: #f0ece4; }

/* Section label */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c9a84c;
}

/* Horizontal gold divider */
.hr-gold {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.4), transparent);
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0) 100%);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #f0ece4;
  text-decoration: none;
}
.nav-cta {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a84c;
  text-decoration: none;
  transition: opacity 0.3s;
}
.nav-cta:hover { opacity: 0.7; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-link-muted {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240,236,228,0.65);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-link-muted:hover { color: #c9a84c; }

@media (max-width: 640px) {
  nav { padding: 20px 24px; }
  .nav-links { gap: 12px; }
  .nav-link-muted,
  .nav-cta { font-size: 0.62rem; letter-spacing: 0.1em; }
}
</content>
</invoke>