/* Demo gold theme — site-wide overrides */

:root {
  --black: #000000;
  --black-soft: #0a0a0a;
  --gold-bright: #f5d76e;
  --gold: #d4af37;
  --gold-warm: #c9a227;
  --gold-deep: #8b6914;
  --gold-pale: #f5e6be;
  --gold-glow: rgba(212, 175, 55, 0.35);
  --text: #f5e6be;
  --text-muted: rgba(245, 230, 190, 0.65);
  --text-strong: #f5e6be;
  --cream: var(--black-soft);
  --cream-deep: var(--black);
  --beige: rgba(212, 175, 55, 0.15);
  --rose: var(--gold);
  --terracotta: var(--gold-warm);
  --plum: var(--gold-pale);
  --plum-soft: var(--gold);
  --white: rgba(10, 10, 10, 0.5);
  --shadow: 0 0 40px rgba(212, 175, 55, 0.08);
  --radius: 0;
  --radius-sm: 0;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Montserrat", "Segoe UI", sans-serif;
}

body {
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: var(--gold-pale);
}

a:hover {
  color: var(--gold-bright);
}

h1, h2, h3, h4 {
  color: var(--gold-pale);
  font-weight: 400;
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
}

p {
  color: var(--text-muted);
}

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

/* Background effects */
.silk-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(30, 25, 15, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(25, 20, 10, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse 100% 100% at 50% 50%, #0d0d0d 0%, #000 100%);
  pointer-events: none;
}

.silk-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    105deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.008) 2px,
    rgba(255, 255, 255, 0.008) 4px
  );
  opacity: 0.6;
}

#particles {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.site-shell {
  position: relative;
  z-index: 2;
}

.gold-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 10px var(--gold-glow);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  border-bottom: none;
  backdrop-filter: none;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.site-header__inner {
  min-height: 72px;
  padding: 0.5rem 0;
}

.site-header__cta {
  display: none;
}

.brand {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--gold-pale);
  letter-spacing: 0.02em;
}

.brand span {
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-top: 0.15rem;
}

.nav-bar__link {
  background: transparent;
  color: var(--text-muted) !important;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 0.65rem;
  border-radius: 0;
  min-height: auto;
}

.nav-bar__link:hover {
  background: transparent;
  color: var(--gold-bright) !important;
  text-shadow: 0 0 20px var(--gold-glow);
  transform: none;
}

.menu-toggle {
  background: none;
  border: none;
  color: var(--gold);
  border-radius: 0;
}

.menu-toggle__bars,
.menu-toggle__bars::before,
.menu-toggle__bars::after {
  background: currentColor;
}

/* Buttons */
.btn {
  border-radius: 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(245, 215, 110, 0.2) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn--primary {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(139, 105, 20, 0.08) 100%);
  border: 1px solid var(--gold);
  color: var(--gold-pale);
  box-shadow: none;
  animation: none;
}

.btn--primary:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(139, 105, 20, 0.08) 100%);
  border-color: var(--gold-bright);
  box-shadow: 0 0 30px var(--gold-glow), inset 0 0 20px rgba(212, 175, 55, 0.1);
  color: var(--gold-bright);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(212, 175, 55, 0.4);
  color: var(--gold-pale);
}

.btn--ghost:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

.btn--soft {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--gold-pale);
}

.btn--pulse {
  animation: none;
}

/* Hero */
.hero--plain {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: transparent;
  padding: 8rem 0 4rem;
}

.hero--plain .hero__content {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.hero--plain .hero__brand {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-sans);
  font-weight: 400;
  margin-bottom: 0;
  text-shadow: 0 0 30px var(--gold-glow);
}

.hero--plain .hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--gold-pale);
  max-width: none;
  margin-bottom: 2rem;
}

.hero--plain .hero__text {
  max-width: 620px;
  margin-inline: auto;
  font-weight: 300;
  color: var(--text-muted);
}

.hero--plain .hero__actions {
  justify-content: center;
}

.hero--plain .hero__note {
  margin-top: 3rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.5);
}

/* Sections */
.section {
  padding: 6rem 0;
}

.section__eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  font-weight: 400;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  max-width: none;
  text-align: center;
  margin-inline: auto;
}

.section__lead {
  text-align: center;
  margin-inline: auto;
  color: var(--text-muted);
  font-weight: 300;
}

.section__head {
  text-align: center;
}

.section__head .section__title,
.section__head .section__lead {
  margin-inline: auto;
}

.grid-2 > div:last-child .section__title,
.grid-2 > div:last-child .section__eyebrow,
.grid-2 > div:last-child .section__lead {
  text-align: left;
}

/* Cards */
.card {
  background: rgba(10, 10, 10, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 0;
  box-shadow: none;
}

.card:hover {
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

.card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold-pale);
}

.card__icon {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
}

.step__num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.services-grid .card {
  padding: 2.5rem;
}

/* Portrait */
.portrait {
  border-radius: 30px;
  border: 2px solid var(--gold, #d4af37);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
  overflow: hidden;
}

.portrait img {
  display: block;
  width: 100%;
}

.portrait::after {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
}

/* Soft panel */
.soft-panel {
  background: rgba(10, 10, 10, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 0;
}

/* Reviews */
.reviews__track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  overflow: visible;
}

.review {
  flex: none;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.06) 0%, transparent 100%);
  border: none;
  border-left: 2px solid var(--gold);
  border-radius: 0;
  padding: 2rem;
}

.review__text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
}

.review__name {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}

/* FAQ */
.faq details {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 0;
  padding: 0;
  margin-bottom: 0;
}

.faq summary {
  color: var(--gold-pale);
  font-weight: 400;
  padding: 1.5rem 2.5rem 1.5rem 0;
  position: relative;
}

.faq summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.25rem;
}

.faq details[open] summary::after {
  content: '×';
}

.faq details[open] summary {
  color: var(--gold-bright);
}

.faq details p {
  padding-bottom: 1.5rem;
  font-weight: 300;
}

/* Page hero (inner pages) */
.page-hero {
  padding: 8rem 0 3rem;
  background: transparent;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--gold-pale);
  max-width: none;
}

.page-hero p {
  color: var(--text-muted);
  margin-inline: auto;
}

/* Blog */
.post-card__cat {
  color: var(--gold);
  letter-spacing: 0.08em;
}

.post-card h3 a {
  color: var(--gold-pale);
  font-family: var(--font-serif);
}

.post-card__media,
.article-hero-media {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 0;
}

/* Article content */
.entry-content {
  color: var(--text-muted);
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  color: var(--gold-pale);
  font-family: var(--font-serif);
}

.entry-content a {
  color: var(--gold-bright);
}

.entry-content blockquote {
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  color: var(--text);
  font-family: var(--font-serif);
  font-style: italic;
}

.share-row {
  border-top-color: rgba(212, 175, 55, 0.15);
}

/* Forms */
.form input,
.form select,
.form textarea,
.lead__form input {
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--gold-pale);
  border-radius: 0;
}

.form label {
  color: var(--gold-pale);
}

/* Footer */
.site-footer {
  background: rgba(0, 0, 0, 0.5);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  margin-top: 0;
  padding: 4rem 0 2rem;
}

.site-footer h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold-pale);
}

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

.site-footer a:hover {
  color: var(--gold-bright);
  text-decoration: none;
}

.site-footer__copy {
  border-top-color: rgba(212, 175, 55, 0.1);
  color: var(--text-muted);
}

.brand--light {
  color: var(--gold-pale);
}

/* Nav drawer — mobile */
.nav-overlay {
  background: rgba(0, 0, 0, 0.85);
}

.nav-drawer {
  background: rgba(0, 0, 0, 0.97);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.5);
}

.nav-drawer__head .brand {
  color: var(--gold-pale);
}

.nav-drawer__close {
  background: transparent;
  color: var(--gold);
  border-radius: 0;
}

.nav-drawer__link {
  color: var(--gold-pale);
  border-bottom-color: rgba(212, 175, 55, 0.15);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-drawer__link:hover {
  color: var(--gold-bright);
}

/* Social icons */
.social-icon,
.social-icon--lg {
  background: rgba(212, 175, 55, 0.1) !important;
  color: var(--gold) !important;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.social-icon:hover,
.social-icon--lg:hover {
  background: rgba(212, 175, 55, 0.2) !important;
  color: var(--gold-bright) !important;
}

.site-footer .social-icon {
  background: rgba(212, 175, 55, 0.1) !important;
  color: var(--gold) !important;
}

.site-footer .social-icon:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
}

.social-chip {
  color: var(--gold-pale);
  background: transparent;
  border-color: rgba(212, 175, 55, 0.35);
}

.social-chip span:last-child {
  color: var(--gold-pale);
}

@media (max-width: 760px) {
  .social-row--contacts,
  .social-row--my {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .social-chip {
    padding: 1rem 0.5rem;
  }
}

/* Cookie banner */
.cookie-banner {
  background: rgba(0, 0, 0, 0.95);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.cookie-banner p {
  color: var(--text-muted);
}

.cookie-banner a {
  color: var(--gold);
}

/* Float social */
.float-social__btn {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(139, 105, 20, 0.15) 100%);
  border: 1px solid var(--gold);
  color: var(--gold);
}

.float-social__panel {
  background: rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.float-social__item {
  color: var(--gold-pale);
}

/* Pagination */
.pagination .page-numbers {
  color: var(--gold-pale);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.pagination .page-numbers.current {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold);
}

/* Lead magnet / badges */
.lead {
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 0;
}

.badge {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
}

.price-table th {
  color: var(--gold-pale);
  font-family: var(--font-serif);
}

.price-table td,
.price-table th {
  border-bottom-color: rgba(212, 175, 55, 0.15);
}

.contact-phone a {
  color: var(--gold-bright);
}

/* Catalog page */
.catalog-page .catalog-search-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.catalog-page .catalog-search {
  max-width: 640px;
  width: 100%;
  margin-inline: auto;
}

.catalog-page .catalog-search input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 0;
  color: var(--gold-pale);
  padding: 0.95rem 1rem;
  font: inherit;
}

.catalog-page .catalog-search input::placeholder {
  color: rgba(245, 230, 190, 0.45);
}

.catalog-page .catalog-search input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.catalog-page .catalog-search .btn {
  flex-shrink: 0;
  min-width: 52px;
  padding-inline: 1.25rem;
}

.catalog-page .catalog-status {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.catalog-page .posts-grid {
  gap: 1.5rem;
}

.catalog-page .post-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.catalog-page .post-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.catalog-page .post-card__body p.muted {
  margin-top: auto;
}

.catalog-page .soft-panel {
  text-align: center;
  max-width: 520px;
  margin-inline: auto;
}

@media (max-width: 980px) {
  .catalog-page .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .grid-2 .portrait {
    max-width: 420px;
    margin-inline: auto;
  }

  .catalog-page .catalog-search {
    flex-direction: column;
    gap: 0.75rem;
  }

  .catalog-page .catalog-search input {
    width: 100%;
  }

  .catalog-page .catalog-search .btn {
    width: 100%;
    min-height: 48px;
  }

  .catalog-page .posts-grid {
    grid-template-columns: 1fr;
  }

  .catalog-page .post-card__body {
    padding: 1.1rem 1.15rem 1.25rem;
  }

  .catalog-page .post-card h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .catalog-page .page-hero h1 {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }

  .catalog-page .catalog-search input {
    font-size: 16px;
  }
}

@media (min-width: 900px) {
  .site-header__cta {
    display: inline-flex;
  }
}

@media (max-width: 980px) {
  .reviews__track {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 4rem 0;
  }

  .hero--plain {
    padding-top: 6rem;
  }
}
