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

:root {
  --bg: #0b0a09;
  --bg2: #13110f;
  --bg3: #1b1814;
  --gold: #c4a574;
  --gold2: #e8d5b0;
  --text: #f4efe6;
  --muted: #9a9084;
  --line: rgba(196, 165, 116, 0.22);
  --danger: #c45c5c;
  --ok: #7d9a6f;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Outfit, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: var(--gold2); text-decoration: none; }
a:hover { color: #fff; }

h1, h2, h3, .serif { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 6vw, 5rem); line-height: 0.95; margin: 0 0 18px; }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); margin: 0 0 16px; }
h3 { font-size: 1.35rem; margin: 0 0 8px; }

.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.muted { color: var(--muted); }
.gold { color: var(--gold); }
.center { text-align: center; }
.eyebrow {
  color: var(--gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 500;
  margin-bottom: 14px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  border-bottom: 1px solid transparent;
}
.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  letter-spacing: 0.34em;
  color: var(--gold2);
}
.nav-links { display: flex; gap: 22px; align-items: center; font-size: 0.92rem; }
.nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--gold2); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold2);
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.btn:hover { background: var(--gold); color: #16120c; }
.btn-solid { background: var(--gold); color: #16120c; }
.btn-solid:hover { background: var(--gold2); }
.btn-ghost { border-color: var(--line); color: var(--muted); }
.btn-danger { border-color: var(--danger); color: #f0c9c9; }
.btn-danger:hover { background: var(--danger); color: #fff; }
.btn-ok { border-color: var(--ok); color: #d7e8cf; }
.btn-ok:hover { background: var(--ok); color: #111; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding: 40px 0 80px;
}
.hero-copy p.lead { font-size: 1.15rem; color: var(--muted); max-width: 36rem; }
.hero-photo {
  position: relative;
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,10,9,.72));
}
.stamp {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold2);
}

.section { padding: 88px 0; border-top: 1px solid var(--line); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.card {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
}
.step-num {
  font-family: "Cormorant Garamond", serif;
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 8px;
}

.badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge {
  border: 1px solid var(--line);
  color: var(--gold2);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}

.carousel { position: relative; overflow: hidden; }
.carousel-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}
.carousel-track::-webkit-scrollbar { height: 6px; }
.carousel-track::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 99px; }
.proof {
  min-width: min(300px, 78vw);
  max-width: 320px;
  scroll-snap-align: start;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.proof img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: contain;
  object-position: center;
  background: #0a0a0a;
}
.proof .body { padding: 20px; }
.proof blockquote { margin: 0 0 12px; font-family: "Cormorant Garamond", serif; font-size: 1.35rem; font-style: italic; line-height: 1.25; }

.faq details {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}
.faq summary { cursor: pointer; font-weight: 500; }
.legal {
  font-size: 0.85rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding: 40px 0 60px;
}

.form {
  display: grid;
  gap: 14px;
  max-width: 520px;
}
label { font-size: 0.82rem; color: var(--muted); display: grid; gap: 6px; }
input, select, textarea {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
}
textarea { min-height: 110px; resize: vertical; }
.checkboxes { display: flex; flex-direction: column; gap: 8px; color: var(--text); }
.checkboxes label { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; color: var(--text); }
.checkboxes input { width: auto; }

.flash {
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 16px;
}
.flash-ok { background: rgba(125, 154, 111, 0.15); color: #d7e8cf; }
.flash-error { background: rgba(196, 92, 92, 0.16); color: #f0c9c9; }

.app-shell, .admin-shell { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.side {
  border-right: 1px solid var(--line);
  padding: 28px 20px;
  background: #0e0c0a;
}
.side a { display: block; color: var(--muted); padding: 8px 0; }
.side a.active, .side a:hover { color: var(--gold2); }
.main { padding: 32px; }
.table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.table th, .table td { text-align: left; padding: 12px 8px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.table th { color: var(--muted); font-weight: 500; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; }

.tinder {
  max-width: 420px;
  margin: 0 auto;
}
.tinder-card {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.tinder-card img { height: 460px; width: 100%; object-fit: cover; }
.tinder-body { padding: 22px; }
.note {
  background: rgba(196, 165, 116, 0.08);
  border-left: 2px solid var(--gold);
  padding: 12px 14px;
  margin: 14px 0;
  color: var(--gold2);
}

.chat {
  max-width: 720px;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 70vh;
}
.bubbles { display: grid; gap: 10px; align-content: start; }
.bubble {
  max-width: 75%;
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--bg3);
}
.bubble.me { margin-left: auto; background: rgba(196, 165, 116, 0.18); }
.chat-form { display: flex; gap: 10px; margin-top: 16px; }
.chat-form textarea { min-height: 52px; }

.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.filters input, .filters select { width: auto; min-width: 140px; }

.ficha {
  width: 210mm;
  min-height: 297mm;
  margin: 0 auto;
  background: #fff;
  color: #1a1612;
  padding: 18mm;
}
.ficha img { width: 42mm; height: 52mm; object-fit: cover; }
.ficha-top { display: flex; gap: 18px; border-bottom: 1px solid #d8c9b0; padding-bottom: 16px; }
.password-box {
  margin-top: 24px;
  border: 2px dashed #c4a574;
  padding: 16px;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}

@media print {
  body { background: #fff; }
  .no-print { display: none !important; }
  .ficha { box-shadow: none; }
}

@media (max-width: 860px) {
  .hero, .grid-3, .grid-2, .app-shell, .admin-shell { grid-template-columns: 1fr; }
  .hero-photo { min-height: 360px; }
  .side { border-right: 0; border-bottom: 1px solid var(--line); }
  .main { padding: 20px; }
  .ficha { width: auto; min-height: auto; }
}
