@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700;800&family=Cinzel:wght@400;600;700&display=swap");

:root {
  --crimson: #ff2d6b;
  --crimson-light: #ff6b9d;
  --crimson-dark: #c4004a;
  --magenta: #c81e9d;
  --flame: #ff6b35;
  --bg: #080510;
  --bg-mid: #0f0a1a;
  --bg-card: #140e20;
  --bg-card2: #1a1028;
  --text: #f0e6ff;
  --text-muted: #9b82b5;
  --text-dim: #6b5490;
  --border: rgba(255, 45, 107, 0.18);
  --border-soft: rgba(200, 30, 157, 0.12);
  --shadow: 0 4px 24px rgba(200, 30, 157, 0.08);
  --shadow-md: 0 8px 40px rgba(255, 45, 107, 0.12);
  --shadow-lg: 0 20px 70px rgba(255, 45, 107, 0.2);
  --glow: 0 0 40px rgba(255, 45, 107, 0.25);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --nav-h: 76px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--crimson); color: #fff;
  padding: 8px 16px; border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 700; z-index: 9999; transition: top .2s;
}
.skip-link:focus { top: 0; }

h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.15; font-weight: 700;
}
h4, h5 { font-family: "Outfit", sans-serif; font-weight: 700; }
a { color: var(--crimson); text-decoration: none; transition: color .3s ease; }
a:hover { color: var(--crimson-light); }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--crimson-dark), var(--crimson), var(--crimson-light));
  color: #fff; font-family: "Outfit", sans-serif; font-weight: 700; font-size: 1rem;
  padding: 14px 32px; border: none; border-radius: 50px; cursor: pointer;
  transition: all .3s ease; text-decoration: none;
  box-shadow: 0 4px 20px rgba(255, 45, 107, 0.4); white-space: nowrap;
}
.btn-primary:hover {
  color: #fff; box-shadow: 0 8px 36px rgba(255, 45, 107, 0.6);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--crimson);
  font-family: "Outfit", sans-serif; font-weight: 700; font-size: 1rem;
  padding: 12px 30px; border: 2px solid var(--crimson); border-radius: 50px;
  cursor: pointer; transition: all .3s ease; text-decoration: none; white-space: nowrap;
}
.btn-outline:hover {
  background: rgba(255, 45, 107, 0.1); color: var(--crimson-light);
  border-color: var(--crimson-light); transform: translateY(-2px);
}

/* Labels & accents */
.section-label {
  font-family: "Outfit", sans-serif; font-size: .75rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; margin-bottom: 12px; display: block;
  color: var(--crimson);
}
.accent-text { color: var(--crimson); }
.accent-gradient-text {
  background: linear-gradient(135deg, var(--crimson-dark), var(--crimson), var(--crimson-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--magenta));
  border-radius: 10px; margin: 20px auto;
}

/* Cards */
.card {
  background: var(--bg-card); border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-lg); padding: 36px; position: relative;
  transition: all .3s ease; box-shadow: var(--shadow);
}
.card:hover {
  border-color: rgba(255, 45, 107, 0.35); box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

/* Scrollbar */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--bg-mid); }
::-webkit-scrollbar-thumb { background: var(--crimson-dark); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--crimson); }

/* Paw bg pattern */
.paw-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cellipse cx='50' cy='65' rx='18' ry='14' fill='%23ff2d6b' opacity='0.03'/%3E%3Ccircle cx='30' cy='44' r='8' fill='%23ff2d6b' opacity='0.03'/%3E%3Ccircle cx='70' cy='44' r='8' fill='%23ff2d6b' opacity='0.03'/%3E%3Ccircle cx='39' cy='33' r='7' fill='%23ff2d6b' opacity='0.03'/%3E%3Ccircle cx='61' cy='33' r='7' fill='%23ff2d6b' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 100px 100px;
}

/* Animations */
@keyframes fadeInUp { 0% { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, to { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes wiggle { 0%, to { transform: rotate(-4deg); } 50% { transform: rotate(4deg); } }
@keyframes pulse-glow { 0%, to { box-shadow: 0 0 0 0 rgba(255, 45, 107, 0.5); } 50% { box-shadow: 0 0 0 8px rgba(255, 45, 107, 0); } }

.fade-in { animation: fadeInUp .7s ease forwards; }

/* Section header */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--text); }
.section-desc { max-width: 560px; margin: 0 auto; color: var(--text-muted); }

/* Page hero */
.page-hero {
  position: relative; overflow: hidden;
  padding: calc(var(--nav-h) + 80px) 0 80px;
  text-align: center;
  background: linear-gradient(160deg, var(--bg) 0%, var(--bg-mid) 60%, #120d1f 100%);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,45,107,.1) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: "Cormorant Garamond", serif; font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  line-height: 1.1; margin-bottom: 20px; color: var(--text);
}
.page-hero p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 36px; justify-content: center; }

/* Icon box */
.icon-box {
  display: inline-flex; align-items: center; justify-content: center;
  width: 72px; height: 72px; border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,45,107,.15), rgba(200,30,157,.1));
  font-size: 2rem; margin-bottom: 18px; flex-shrink: 0;
  border: 1.5px solid rgba(255,45,107,.2);
}

.badge-num {
  font-family: "Outfit", sans-serif; font-size: 1rem; color: var(--crimson);
  background: rgba(255, 45, 107, .12); padding: 5px 12px; border-radius: 10px;
}

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* CTA Band */
.cta-band {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(255,45,107,.08) 0%, transparent 70%);
}
.cta-band h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--text); margin-bottom: 16px; }
.cta-band p { color: var(--text-muted); max-width: 480px; margin: 0 auto 32px; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-emoji {
  font-size: 2.4rem; letter-spacing: .15em; display: block; margin-bottom: 20px;
  animation: float 3s ease-in-out infinite; position: relative; z-index: 1;
}

/* Features section */
.features-section { background: var(--bg-mid); }
.feat-icon { font-size: 2.4rem; margin-bottom: 14px; display: block; }
.card.feature-card h3 { color: var(--text); margin-bottom: 10px; font-size: 1.1rem; font-family: "Outfit", sans-serif; font-weight: 700; }
.card.feature-card p { color: var(--text-muted); font-size: .93rem; }
.feat-cta { text-align: center; margin-top: 48px; }

/* Reviews */
.reviews-section { background: var(--bg); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { display: flex; flex-direction: column; gap: 14px; }
.review-stars { font-size: 1rem; }
.review-text { color: #c8b8e8; font-size: .95rem; line-height: 1.75; font-style: italic; flex: 1; }
.review-author { display: flex; flex-direction: column; gap: 2px; }
.review-author strong { color: var(--text); font-size: .92rem; }
.review-author span { color: var(--text-dim); font-size: .8rem; }

/* Age gate notice */
.age-notice {
  background: rgba(255,45,107,.08); border: 1.5px solid rgba(255,45,107,.25);
  border-radius: var(--radius); padding: 14px 20px;
  font-size: .87rem; color: var(--text-muted); text-align: center;
  margin-top: 20px;
}
.age-notice strong { color: var(--crimson); }

/* Room enter link */
.room-enter {
  display: inline-block; margin-top: 16px;
  font-family: "Outfit", sans-serif; font-weight: 700; font-size: .88rem;
  color: var(--crimson); transition: transform .2s ease;
}
a:hover .room-enter { transform: translateX(5px); }

/* Inline link list */
.link-cluster { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.link-chip {
  background: rgba(255,45,107,.1); border: 1px solid rgba(255,45,107,.2);
  border-radius: 50px; padding: 6px 18px; font-size: .85rem; font-weight: 600;
  color: var(--crimson-light); transition: all .25s;
}
.link-chip:hover { background: rgba(255,45,107,.2); color: #fff; border-color: var(--crimson); }

/* Responsive */
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .section { padding: 72px 0; }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .container { padding: 0 16px; }
  .page-hero { padding: calc(var(--nav-h) + 56px) 0 60px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns a { width: 100%; max-width: 320px; justify-content: center; }
  .card { padding: 24px; }
}
