/* Public site — deep blue-gray dark theme (no pink) */
:root {
  --bg: #0c1017;
  --bg-elevated: #121820;
  --surface: #171e29;
  --card: #1a2330;
  --card-hover: #202b3a;
  --line: rgba(148, 168, 194, 0.14);
  --ink: #e8eef6;
  --muted: #8b9bb0;
  --accent: #7eb0d6;
  --accent-strong: #9bc4e2;
  --accent-dim: rgba(126, 176, 214, 0.14);
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  --radius: 1.1rem;
  --font: "Poppins", system-ui, -apple-system, sans-serif;
  --display: "Cormorant Garamond", "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(126, 176, 214, 0.08), transparent 55%),
    var(--bg);
  line-height: 1.55;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 16, 23, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  min-width: 0;
}
.logo-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.logo-img {
  height: 2.5rem;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  filter: brightness(1.05);
}
.logo-mark {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #3d5a73, #1a2a3a);
  border: 1px solid rgba(126, 176, 214, 0.35);
  display: grid;
  place-items: center;
  color: var(--accent-strong);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.site-footer .logo-img {
  height: 2.75rem;
  max-width: 180px;
}
.nav-links {
  display: none;
  gap: 1.35rem;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--muted);
}
.nav-links a:hover { color: var(--accent-strong); }
.nav-toggle {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: var(--surface);
  color: var(--accent-strong);
  display: grid;
  place-items: center;
  cursor: pointer;
}
.mobile-nav {
  display: none;
  padding: 0.5rem 0 1rem;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 0.9rem 0.5rem;
  border-radius: 0.75rem;
  font-weight: 500;
  color: var(--ink);
}
.mobile-nav a:active { background: var(--accent-dim); }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}

/* Hero */
.hero {
  padding: 2.75rem 0 2.25rem;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  background: var(--accent-dim);
  color: var(--accent-strong);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(126, 176, 214, 0.22);
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.15rem, 6vw, 3.4rem);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.75rem;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
.hero p {
  color: var(--muted);
  max-width: 34rem;
  margin: 0 auto 1.5rem;
  font-size: 1.05rem;
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: linear-gradient(135deg, #5a8fb5 0%, #3d6a8c 100%);
  color: #fff;
  box-shadow: 0 8px 28px rgba(61, 106, 140, 0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover {
  border-color: rgba(126, 176, 214, 0.4);
  background: var(--accent-dim);
}
.btn-whatsapp {
  background: #1faa55;
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(31, 170, 85, 0.3);
  border: none;
}
.btn-whatsapp:hover { filter: brightness(1.06); }
.btn-whatsapp-lg {
  min-height: 3.25rem;
  font-size: 1.05rem;
  width: 100%;
  max-width: 22rem;
}
.btn-wa-sm {
  min-height: 2.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  width: 100%;
  border-radius: 0.85rem;
  box-shadow: none;
}
.wa-icon { font-size: 1.1em; line-height: 1; }

.card-link { display: block; color: inherit; }
.card-actions {
  padding: 0 0.75rem 0.85rem;
}

/* Why Choose Us */
.why-section { padding-top: 0.5rem; }
.why-head {
  text-align: center;
  margin-bottom: 1.5rem;
}
.why-head h2 {
  margin: 0.65rem 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(1.65rem, 4vw, 2.15rem);
  font-weight: 600;
  color: var(--ink);
}
.why-intro {
  margin: 0 auto;
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.02rem;
}
.why-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
}
.why-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.35rem 1.2rem 1.4rem;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid var(--line);
}
.why-icon {
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 0.85rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  background: var(--accent-dim);
  border: 1px solid rgba(126, 176, 214, 0.2);
}
.why-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
}
.why-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 3.25rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: #1faa55;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 10px 28px rgba(31, 170, 85, 0.4);
  -webkit-tap-highlight-color: transparent;
}
.wa-float:active { transform: scale(0.97); }
.wa-float-icon { font-size: 1.25rem; line-height: 1; }
@media (min-width: 768px) {
  .wa-float { bottom: 1.5rem; right: 1.5rem; }
}

/* Section */
.section { padding: 1.5rem 0 2.5rem; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.section-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--ink);
}
.section-head span {
  color: var(--muted);
  font-size: 0.9rem;
}
.section-head a span:hover { color: var(--accent-strong); }

/* Cards grid */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}
@media (min-width: 640px) {
  .grid { grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
}
@media (min-width: 960px) {
  .grid { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, background 0.2s;
}
.card:hover {
  border-color: rgba(126, 176, 214, 0.28);
  background: var(--card-hover);
}
.card:active { transform: scale(0.98); }
.card-photo {
  aspect-ratio: 3/4;
  background: #141b26;
  position: relative;
  overflow: hidden;
}
.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.card-photo .placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 2rem;
  background: linear-gradient(160deg, #1a2433, #121820);
}
.badges {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.25rem 0.45rem;
  border-radius: 999px;
  background: rgba(12, 16, 23, 0.78);
  color: var(--ink);
  border: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.badge-hot { background: #b91c1c; color: #fff; border-color: transparent; }
.badge-new { background: #a16207; color: #fef3c7; border-color: transparent; }
.badge-available { background: #c2410c; color: #fff; border-color: transparent; }
.badge-verified { background: #1d4ed8; color: #fff; border-color: transparent; }
.card-body { padding: 0.85rem; }
.card-body h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}
.meta {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.rate { font-weight: 600; color: var(--accent-strong); }

/* Profile page */
.profile-hero {
  display: grid;
  gap: 1.25rem;
  padding: 1.5rem 0 2rem;
}
@media (min-width: 768px) {
  .profile-hero {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
.gallery {
  display: grid;
  gap: 0.5rem;
}
.gallery-main {
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  background: #141b26;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
}
.gallery-thumbs a {
  aspect-ratio: 1;
  border-radius: 0.65rem;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.85;
}
.gallery-thumbs a:focus,
.gallery-thumbs a.active {
  border-color: var(--accent);
  opacity: 1;
}
.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-info h1 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--ink);
}
.profile-info .bio {
  color: var(--muted);
  white-space: pre-wrap;
  margin: 1rem 0 1.25rem;
}
.detail-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}
.detail-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.detail-list span:first-child { color: var(--muted); }
.detail-list span:last-child { font-weight: 600; color: var(--ink); }
.rates-block { margin: 0 0 1.25rem; }
.rates-title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink);
}
.rates-currency {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent-strong);
  background: var(--accent-dim);
  border: 1px solid rgba(126, 176, 214, 0.22);
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
}
.rates-list { margin-bottom: 0; }

/* Content pages */
.page {
  padding: 2rem 0 3rem;
  max-width: 40rem;
}
.page h1 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--ink);
}
.page p, .page .prose {
  color: var(--muted);
  white-space: pre-wrap;
}

/* Footer */
.site-footer {
  margin-top: 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  background: var(--bg-elevated);
}
.site-footer .logo {
  justify-content: center;
  margin-bottom: 0.75rem;
}
.empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
