/* ================================================================
   dicprivatemodels.com — style.css
   Theme: Royal Obsidian & Matte Gold (Restored)
   ================================================================ */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Inter:wght@300;400;500;600&display=swap");

:root {
  /* Базовый фон — ослепительно белый / жемчужный */
  --dic-bg: #ffffff;
  --dic-surface: #f8f9fa; /* Мягкий светло-серый для разделения секций */
  --dic-card: #ffffff;    /* Чисто-белые карточки на сером фоне */

  /* Акцент — Яркое, насыщенное золото (Radiant Gold) */
  /* Вместо тусклого матового — используем сочные, солнечные оттенки */
  --dic-gold: #d4af37;        /* Основной золотой акцент */
  --dic-gold-light: #f1c40f;  /* Яркий солнечный блик */
  --dic-gold-dim: #b8860b;    /* Глубокий «коньячный» золотой для контраста на белом */

  /* Текст — высокая читаемость на светлом фоне */
  --dic-tx: #0f172a;          /* Глубокий графитовый (почти черный) для заголовков */
  --dic-tx-mid: #475569;      /* Средне-серый для основного текста */
  --dic-tx-dim: #94a3b8;      /* Светло-серый для второстепенных подписей */

  /* UI — Тонкие, едва заметные линии */
  --dic-border: rgba(212, 175, 55, 0.15);       /* Золотистая дымка для границ */
  --dic-border-bright: rgba(212, 175, 55, 0.4);  /* Более четкие акцентные линии */
  --dic-glass: rgba(255, 255, 255, 0.85);        /* Матовое светлое стекло для шапки */

  /* Шрифты (оставляем те же, они идеально работают в светлой схеме) */
  --dic-ff-disp: "Playfair Display", serif;
  --dic-ff-body: "Inter", sans-serif;

  /* Тайминги */
  --dic-t-fast: 0.3s ease;
  --dic-t-slow: 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

/* ── Reset & Base ── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: var(--dic-bg);
  color: var(--dic-tx);
  font-family: var(--dic-ff-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--dic-t-fast);
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

/* ── Typography & Utilities ── */
.dic-wrap {
  width: min(1400px, 94%);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .dic-wrap {
    flex-direction: row;
  }
}

.dic-display {
  font-family: var(--dic-ff-disp);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.dic-display em {
  font-style: italic;
  color: var(--dic-gold);
}
.dic-eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--dic-gold);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.dic-eyebrow::after {
  content: "";
  height: 1px;
  width: 40px;
  background: var(--dic-gold);
}
.dic-text-center {
  text-align: center;
}

/* ── Buttons ── */
.dic-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.8rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--dic-t-slow);
}
.dic-btn-gold {
  background: var(--dic-gold);
  color: #000;
}
.dic-btn-gold:hover {
  background: var(--dic-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}
.dic-btn-outline {
  border: 1px solid var(--dic-tx-mid);
  color: var(--dic-tx);
}
.dic-btn-outline:hover {
  border-color: var(--dic-gold);
  color: var(--dic-gold);
}
.dic-btn-gold-outline {
  border: 1px solid var(--dic-gold);
  color: var(--dic-gold);
}
.dic-btn-gold-outline:hover {
  background: var(--dic-gold);
  color: #000;
}

/* ── Layout ── */
.dic-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dic-glass);
  border-bottom: 1px solid var(--dic-border);
  backdrop-filter: blur(15px);
  padding: 1.2rem 0;
}
.dic-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-btn {
  display: none;
}

@media (min-width: 768px) {
  .header-btn {
    display: block;
  }
}

.dic-logo {
  font-family: var(--dic-ff-disp);
  font-size: 1.7rem;
  letter-spacing: 1px;
}
.dic-logo span {
  color: var(--dic-gold);
  font-weight: 600;
}
.dic-nav {
  display: flex;
  gap: 2.5rem;
}
.dic-nav a {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dic-tx-mid);
}
.dic-nav a:hover {
  color: var(--dic-gold);
}

.dic-hero {
  padding: 3rem 0 6rem;
}
.dic-hero-grid {
  display: grid;
  gap: 5rem;
  align-items: center;
}

.dic-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .dic-hero-grid {
    grid-template-columns: 1.6fr 1fr;
  }

  .dic-hero-actions {
    flex-direction: row;
  }

  .dic-hero {
  padding: 10rem 0 6rem;
}
}

.dic-lead {
  font-size: 1.3rem;
  color: var(--dic-tx-mid);
  font-weight: 300;
  margin: 2rem 0;
  max-width: 650px;
}

.dic-about {
  padding: 0;
  background: var(--dic-surface);
  border-top: 1px solid var(--dic-border);
}
.dic-about-banner {
  display: grid;
  gap: 4rem;
  align-items: center;
  background: var(--dic-card);
  padding: 5rem 4rem;
  border: 1px solid var(--dic-border);
}
.dic-stats {
  display: flex;
  gap: 4rem;
}

@media (min-width: 768px) {
  .dic-about-banner {
    grid-template-columns: 1.5fr 1fr;
  }

  .dic-about {
    padding: 8rem 0;
  }
}

@media (max-width: 768px) {
  .dic-stats {
    grid-column: 1 / 2 span;
    flex-direction: column;
  }

  .dic-stat {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .dic-about-banner {
    padding: 0;
    gap: 0;
  }
}

.dic-stat span {
  display: block;
  font-family: var(--dic-ff-disp);
  font-size: 3.5rem;
  color: var(--dic-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.dic-stat label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dic-tx-dim);
}

/* ── Grid ── */
.dic-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  padding: 2rem 0;
}
.dic-card-link {
  display: block;
  position: relative;
  border: 1px solid var(--dic-border);
  overflow: hidden;
  transition: var(--dic-t-slow);
}
.dic-card-link:hover {
  transform: translateY(-8px);
  border-color: var(--dic-gold-dim);
}
.dic-card {
  aspect-ratio: 3/4.2;
  background: var(--dic-card);
  position: relative;
  overflow: hidden;
}
.dic-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--dic-t-slow);
}
.dic-card-link:hover img {
  transform: scale(1.1);
}
.dic-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 45%);
  z-index: 1;
}
.dic-card-info {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
}
.dic-card-name {
  font-family: var(--dic-ff-disp);
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 2px;
}
.dic-card-age {
  color: var(--dic-gold);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ── Services (Grid Structure) ── */
.dic-services {
  padding: 8rem 0;
  border-top: 1px solid var(--dic-border);
}
.dic-services-grid {
  display: grid;
  gap: 7px;
  /* background: var(--dic-border); */
  /* border: 1px solid var(--dic-border); */
  margin-top: 5rem;
}

@media (min-width: 768px) {
  .dic-services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.dic-service-card {
  padding-block: 3rem;
  background: var(--dic-bg);
  transition: var(--dic-t-slow);
}

@media (min-width: 768px) {
  .dic-service-card {
    padding: 4rem;
  }
}

.dic-service-card:hover {
  background: var(--dic-surface);
}
.dic-service-card h3 {
  font-family: var(--dic-ff-disp);
  font-size: 2.2rem;
  color: var(--dic-gold);
  margin-bottom: 1.5rem;
}
.dic-service-card p {
  color: var(--dic-tx-mid);
  margin-bottom: 2rem;
}
.dic-service-price {
  display: inline-block;
  padding: 0.5rem 0;
  border: 1px solid var(--dic-gold);
  color: var(--dic-tx-dim);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  padding: 5px;
}

/* BLOCK SEO */
.dic-seo {
  padding-bottom: 3rem;
}

.dic-seo h4
 {
  font-family: var(--dic-ff-disp);
  font-size: 2.2rem;
  color: var(--dic-gold);
  margin-bottom: 1.5rem;
 }

 .dic-seo p {
  color: var(--dic-tx-mid);
  margin-bottom: 2rem;
}

/* ── Contacts ── */
.dic-contact {
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid var(--dic-border);
}

.dic-contact-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .dic-contact {
    padding: 10rem 0;
  }
}

/* ── Стили для кнопок контактов (WhatsApp & Telegram) ── */
.dic-contact-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.dic-btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px; /* Отступ между иконкой и текстом */
  padding: 1.2rem 3rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 2px; /* Острые углы для строгого стиля */
  transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
  min-width: 240px;
  cursor: pointer;
}

/* Специфические цвета */
.dic-wa {
  background: #128c7e; /* Приглушенный зеленый WhatsApp */
  color: #ffffff;
}

.dic-tg {
  background: #0088cc; /* Фирменный синий Telegram */
  color: #ffffff;
}

/* Ховер эффекты */
.dic-btn-contact:hover {
  filter: brightness(1.15); /* Кнопка становится чуть светлее */
  transform: translateY(-4px); /* Подпрыгивание */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.dic-btn-contact svg {
  flex-shrink: 0;
  /* Иконка будет наследовать цвет текста */
}

/* Адаптивность: на мобильных кнопках встают друг под друга */
@media (max-width: 768px) {
  .dic-contact-btns {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
  }
  
  .dic-btn-contact {
    width: 100%;
    max-width: 320px;
    padding: 1.1rem 2rem;
  }
}
.dic-btn-messenger {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 1.3rem 3.5rem;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  border-radius: 2px;
}

/* FOOTER */

.dic-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  color: var(--dic-tx-mid);
}


/* ── 10. SYSTEMA MODAL (GOLD RE-ESTABLISHED) ── */
.dic-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(15px);
  z-index: 9999;
  display: none;
  opacity: 0;
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto;
  padding: 50px 20px;
  transition: opacity 0.4s ease;
}
.dic-backdrop.is-open {
  display: flex;
  opacity: 1;
}

.dic-modal {
  display: none;
  width: 100%;
  max-width: 1100px;
  background: var(--dic-bg);
  border: 1px solid var(--dic-border-bright);
  position: relative;
  margin: auto;
  box-shadow: 0 0 100px rgba(0, 0, 0, 1);
}
.dic-modal.is-visible {
  display: block;
}

.dic-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 45px;
  line-height: 1;
  color: #fff;
  z-index: 100;
  opacity: 0.6;
  transition: var(--dic-t-fast);
}
.dic-modal-close:hover {
  opacity: 1;
  color: var(--dic-gold);
  transform: rotate(90deg);
}

.dic-modal-grid {
  display: grid;
  grid-template-columns: 480px 1fr;
}

/* Modal Gallery */
.dic-modal-gallery {
  background: #000;
  border-right: 1px solid var(--dic-border);
}
.dic-gallery-main-img {
  width: 100%;
  aspect-ratio: 3/4.2;
  object-fit: cover;
}
.dic-gallery-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px;
  background: var(--dic-surface);
}
.dic-gallery-thumb {
  width: 70px;
  height: 95px;
  cursor: pointer;
  border: 1px solid transparent;
  opacity: 0.3;
  transition: 0.3s;
}
.dic-gallery-thumb.dic-gallery-thumb--active,
.dic-gallery-thumb:hover {
  opacity: 1;
  border-color: var(--dic-gold);
}
.dic-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Modal Details */
.dic-modal-detail {
  padding-top: 2rem;
  padding-inline: 4rem;
}
.dic-modal-name {
  font-family: var(--dic-ff-disp);
  font-size: 3rem;
  color: var(--dic-tx);
  line-height: 1.1;
}
.dic-modal-tagline {
  color: var(--dic-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.dic-modal-badges {
  display: flex;
  gap: 8px;
  margin-top: 1.5rem;
}
.dic-badge {
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.dic-badge--gold {
  background: var(--dic-gold);
  color: #000;
}
.dic-badge--outline {
  border: 1px solid var(--dic-gold);
  color: var(--dic-gold);
  display: flex;
  align-items: center;
  gap: 5px;
}

.dic-modal-section {
  margin-top: 3rem;
}
.dic-modal-section label {
  display: block;
  color: var(--dic-tx-dim);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.65rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--dic-border);
  padding-bottom: 8px;
}

/* Stats Grid */
.dic-modal-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.dic-stat-cell dt {
  color: var(--dic-tx-dim);
  font-size: 0.6rem;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.dic-stat-cell dd {
  font-size: 1.05rem;
  color: var(--dic-tx-dim);
}
.dic-stat-cell--full {
  grid-column: 1 / -1;
}

/* Rates */
.dic-modal-rates {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.dic-rate-cell {
  flex: 1;
  min-width: 100px;
  padding: 15px;
  background: var(--dic-surface);
  border: 1px solid var(--dic-border);
  text-align: center;
}
.dic-rate-cell dt {
  color: var(--dic-gold);
  font-size: 0.65rem;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.dic-rate-cell dd {
  font-size: 1.1rem;
  color: var(--dic-tx);
}
.dic-rate-currency {
  font-size: 0.7em;
  color: var(--dic-tx-mid);
  margin-left: 2px;
}

/* Contacts */
.dic-modal-actions {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
}

/* Services */
.dic-modal-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.dic-service-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 11px;
  color: var(--dic-tx-mid);
  background: var(--dic-surface);
  border: 1px solid var(--dic-border);
}

/* Bio & Reviews Footer */
.dic-modal-bio {
  padding: 4rem;
  border-top: 1px solid var(--dic-border);
}
.dic-bio-content {
  font-size: 1rem;
  color: var(--dic-tx-mid);
  line-height: 1.8;
}
.dic-bio-content h1,
.dic-bio-content h2 {
  color: var(--dic-gold);
  font-family: var(--dic-ff-disp);
  margin-bottom: 1rem;
}

.dic-modal-reviews {
  padding: 0 0 4rem;
  background: var(--dic-surface);
  border-top: 1px solid var(--dic-border);
}
.dic-modal-reviews .dic-modal-section {
  padding: 4rem 4rem 0;
  margin-top: 0;
}
.dic-reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.dic-review-card {
  padding: 2rem;
  background: var(--dic-bg);
  border: 1px solid var(--dic-border);
}
.dic-rev-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.dic-rev-stars {
  display: flex;
  gap: 3px;
  color: var(--dic-gold);
}
.dic-rev-body {
  font-size: 0.9rem;
  color: var(--dic-tx-mid);
  font-style: italic;
}

/* ── Mobile ── */
@media (max-width: 1024px) {
  .dic-modal-grid {
    grid-template-columns: 1fr;
  }
  .dic-modal-gallery {
    border-right: none;
  }
  .dic-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .dic-grid {
    grid-template-columns: 1fr 1fr;
  }
  .dic-nav {
    display: none;
  }
  .dic-modal-actions {
    flex-direction: column;
  }
  .dic-reviews-grid {
    grid-template-columns: 1fr;
  }
  .dic-modal-detail,
  .dic-modal-bio,
  .dic-modal-reviews .dic-modal-section {
    padding: 2rem;
  }
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--dic-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--dic-gold-dim);
}
