@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=Poppins:wght@500;600;700&display=swap');

:root {
  color-scheme: light;
  --bg: #ffffff;
  --bg-alt: #ffffff;
  --text: #2e2628;
  --muted: #74686d;
  --accent: #7b2cbf;
  --accent-dark: #5f2568;
  --accent-soft: #e9dcf6;
  --card: #ffffff;
  --line: #e7dff1;
  --shadow: 0 20px 45px rgba(48, 28, 74, 0.12);
}

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

body {
  font-family: 'DM Sans', 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 90vw);
  margin: 0 auto;
}

.bg-orb,
.bg-grid {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(231, 223, 241, 0.7);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-avatar {
  width: 42px;
  height: 42px;
  border-radius: 40%;
  object-fit: cover;
  border: 1px solid rgba(225, 214, 217, 0.8);
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: #3c2f33;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: 'Poppins', sans-serif;
}

.brand-title {
  font-family: 'Poppins', sans-serif;
  font-size: 19px;
  letter-spacing: 0.2px;
  font-weight: 600;
  color: var(--accent-dark);
}

.brand-sub {
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 500;
}

.site-nav a {
  padding: 8px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
}

.site-nav a:hover {
  border-color: var(--accent-soft);
  background: #fff;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--accent-dark);
}

.hero {
  padding: 86px 0 70px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 10px;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(32px, 5vw, 46px);
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--accent-dark);
}

.lead {
  color: var(--muted);
  margin-bottom: 26px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--accent-dark);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(90, 24, 154, 0.2);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.6);
  color: var(--accent-dark);
}

.btn.whatsapp {
  background: #25d366;
  border-color: #25d366;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
}

.btn-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-whatsapp {
  color: #25d366;
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}

.footer-whatsapp:hover {
  border-color: #25d366;
}

.contact-mini {
  margin-top: 28px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
}

.contact-mini span {
  font-weight: 600;
  color: var(--accent-dark);
}

.hero-portrait {
  display: grid;
  gap: 20px;
  justify-items: center;
}

.portrait-ring {
  width: 260px;
  height: 260px;
  border: none;
  border-radius: 42%;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.9), rgba(233, 220, 246, 0.7));
}

.portrait {
  width: 190px;
  height: 190px;
  border-radius: 40%;
  border: 1px dashed rgba(215, 206, 195, 0.8);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats {
  display: flex;
  gap: 20px;
}

.stats div {
  background: rgba(255, 255, 255, 0.95);
  padding: 14px 20px;
  border-radius: 20px;
  border: 1px solid rgba(231, 223, 241, 0.8);
  text-align: center;
  min-width: 120px;
}

.stats h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-dark);
}

.stats p {
  font-size: 13px;
  color: var(--muted);
}

.section-title {
  margin-bottom: 28px;
}

.section-title h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 38px);
  color: var(--accent-dark);
}

.commission {
  padding: 60px 0;
  background: var(--bg);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.info-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(231, 223, 241, 0.8);
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(45, 33, 36, 0.08);
  display: grid;
  gap: 10px;
}

.info-thumb {
  border-radius: 22px;
  border: 1px dashed rgba(231, 223, 241, 0.9);
  background: #ffffff;
  overflow: hidden;
}

.info-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.info-card h3 {
  font-size: 18px;
  color: var(--accent-dark);
}

.info-card p {
  color: var(--muted);
  font-size: 14px;
}

.result {
  padding: 70px 0 80px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.gallery:not(.gallery-full) > .gallery-item:nth-child(n + 9) {
  display: none;
}

.gallery-page .gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-more-wrap {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.gallery-more {
  display: none;
}

.gallery-load {
  margin-top: 26px;
}

.gallery-item {
  border: 1px solid rgba(231, 223, 241, 0.8);
  border-radius: 10px;
  min-height: 200px;
  background: #ffffff;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
  padding: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(90, 24, 154, 0.14);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--accent-dark);
  padding: 36px 0 46px;
}

.site-footer,
.site-footer a {
  color: #ffffff;
}

.site-footer .footer-text {
  color: rgba(255, 255, 255, 0.78);
}

.footer-links a:hover,
.footer-whatsapp:hover {
  border-color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.footer-title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #ffffff;
}

.footer-text {
  color: var(--muted);
}

.site-footer .footer-text {
  color: rgba(255, 255, 255, 0.78);
}

strong,
b {
  color: var(--accent-dark);
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}

.footer-links a:hover {
  border-color: var(--accent-dark);
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(18, 14, 11, 0.6);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 999;
}

.modal.open {
  opacity: 1;
  z-index: 10000;
  pointer-events: auto;
}

.modal-content {
  background: var(--card);
  padding: 24px;
  border-radius: 24px;
  width: min(700px, 92vw);
  box-shadow: var(--shadow);
  position: relative;
}

.modal-image {
  border: 1px solid var(--line);
  height: min(70vh, 520px);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: #ffffff;
  display: grid;
  place-items: center;
}

.modal-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.modal-title {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 13px;
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  z-index: 1;
}

@media (max-width: 900px) {
  .site-nav {
    position: absolute;
    right: 5vw;
    top: 72px;
    flex-direction: column;
    background: #fff;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid var(--line);
    display: none;
  }

  .site-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 50px;
  }

  .stats {
    flex-direction: column;
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-item {
    min-height: 110px;
  }

  .gallery:not(.gallery-full) > .gallery-item:nth-child(n + 9) {
    display: block;
  }
}
