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

:root {
  --blush: #f4c9c9;
  --rose: #e8a0a0;
  --mauve: #c97b7b;
  --deep: #7a3e3e;
  --cream: #fdf6f0;
  --warm-white: #fffaf7;
  --text: #2c1a1a;
  --muted: #9a7a7a;
  --gold: #c9a96e;
  --light-gold: #e8d5b0;
  --dark: #1a0a0a;
  --card-bg: #fff8f5;
  --border: rgba(201, 169, 110, 0.25);

  --nav-height: 72px;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 8px 40px rgba(122, 62, 62, 0.12);
  --shadow-lg: 0 20px 60px rgba(122, 62, 62, 0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--warm-white);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
body.is-loading { overflow: hidden; height: 100vh; }

/* ── LOADER ── */
.loader {
  position: fixed; inset: 0; z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(244,201,201,0.5) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(201,169,110,0.25) 0%, transparent 55%),
    var(--cream);
  transition: transform 0.9s cubic-bezier(0.76,0,0.24,1), opacity 0.7s ease 0.1s;
}
.loader.loader-hide {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.loader-inner {
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
}
.loader-nail-icon {
  font-size: 3.2rem;
  animation: loaderSway 1.8s ease-in-out infinite;
  filter: drop-shadow(0 10px 20px rgba(122,62,62,0.25));
}
@keyframes loaderSway {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(8deg) translateY(-8px); }
}
.loader-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-style: italic;
  color: var(--deep);
  letter-spacing: 0.02em;
}
.loader-brand span { color: var(--gold); font-style: normal; }
.loader-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.4rem;
}
.loader-bar {
  width: 220px; height: 4px;
  background: rgba(122,62,62,0.12);
  border-radius: 99px;
  overflow: visible;
  position: relative;
}
.loader-bar-fill {
  position: relative;
  height: 100%; width: 0%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  animation: loaderFill 1.6s cubic-bezier(0.65,0,0.35,1) forwards;
}
@keyframes loaderFill { from { width: 0%; } to { width: 100%; } }
.loader-bar-nail {
  position: absolute; right: -10px; top: 50%;
  transform: translateY(-50%) rotate(20deg);
  font-size: 0.95rem;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 99px; }

/* ── SELECTION ── */
::selection { background: var(--blush); color: var(--deep); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  background: rgba(255,250,247,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 30px rgba(122,62,62,0.1); }

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--deep);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--gold); font-style: normal; }

.nav-links {
  display: flex; align-items: center; gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0; height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--deep); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--deep) !important;
  color: var(--cream) !important;
  padding: 0.5rem 1.4rem !important;
  border-radius: 99px !important;
  font-size: 0.82rem !important;
  transition: background 0.25s, transform 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--mauve) !important; transform: translateY(-1px) !important; }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--deep); border-radius: 2px;
  transition: all 0.3s;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 99px;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}
.btn-primary {
  background: var(--deep);
  color: var(--cream);
}
.btn-primary:hover { background: var(--mauve); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(122,62,62,0.3); }

.btn-outline {
  background: transparent;
  color: var(--deep);
  border: 1.5px solid var(--deep);
}
.btn-outline:hover { background: var(--deep); color: var(--cream); transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: white;
}
.btn-gold:hover { background: #b8934a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,110,0.4); }

/* ── SECTION TITLES ── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--deep);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.section-title em { font-style: italic; color: var(--mauve); }
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.8;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 5rem 5% 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer-brand .logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: white;
  margin-bottom: 1rem;
  display: block;
}
.footer-brand .logo span { color: var(--gold); font-style: normal; }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 1rem; }
.social-links a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.social-links a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: white;
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.25s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.82rem;
}
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  background: var(--deep);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.toast.show { transform: translateY(0); }

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }
.hidden { display: none !important; }
.page { display: none; }
.page.active { display: block; }
.pt-nav { padding-top: var(--nav-height); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}
.anim-up { animation: fadeUp 0.7s ease both; }
.anim-up-2 { animation: fadeUp 0.7s 0.15s ease both; }
.anim-up-3 { animation: fadeUp 0.7s 0.3s ease both; }
.anim-up-4 { animation: fadeUp 0.7s 0.45s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-height); left: 0; right: 0; background: var(--warm-white); padding: 1.5rem 5%; border-bottom: 1px solid var(--border); gap: 1.2rem; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
