/* ===============================
   ROOT / RESET
=============================== */
:root{
  --bg:#ffffff;
  --txt:#1f2937;
  --muted:#6b7280;
  --line:#e5e7eb;
  --blk:#111827;
  --accent:#bfa76f;
}

*{box-sizing:border-box}
html,body{
  margin:0;
  padding:0;
  background:var(--bg);
  color:var(--txt);
  font:16px/1.5 system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}

/* ===============================
   LAYOUT
=============================== */
.container{max-width:1120px;margin:0 auto;padding:0 16px}
.section{padding:100px 0}
.center{text-align:center}
.muted{color:var(--muted)}

/* ===============================
   HEADER (СТАБИЛЬНЫЙ)
=============================== */
.main-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  background:rgba(0,0,0,.75);
  backdrop-filter:blur(6px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 48px;
}
.logo img{
  height:56px;
  width:auto;
}
.main-nav ul{
  display:flex;
  gap:28px;
  list-style:none;
  margin:0;
  padding:0;
}
.main-nav a{
  color:#f5f1e3;
  font-size:15px;
  transition:.25s;
}
.main-nav a:hover{
  color:var(--accent);
  text-shadow:0 0 8px rgba(191,167,111,.6);
}
body{padding-top:88px}

/* ===============================
   HERO (ГЛАВНАЯ — ФИКС)
=============================== */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background:url('/assets/img/Glavnaya.jpg') center/cover no-repeat;
  color:#fff;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to right,
    rgba(17,17,17,.75) 25%,
    rgba(17,17,17,.55) 75%
  );
}
.hero-content{
  position:relative;
  z-index:2;
  max-width:900px;
  padding:0 20px;
}
.hero h1{
  font-size:44px;
  line-height:1.2;
  margin-bottom:20px;
}
.hero .subtitle{
  font-size:18px;
  margin-bottom:30px;
  color:#ddd;
}
.actions{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

/* ===============================
   BUTTONS (ЕДИНСТВЕННАЯ ВЕРСИЯ)
=============================== */
.btn-gold{
  display:inline-block;
  background:linear-gradient(135deg,#bfa76f,#d8c58c);
  color:#fff;
  border:none;
  border-radius:30px;
  padding:12px 26px;
  font-size:16px;
  font-weight:500;
  text-transform:uppercase;
  transition:.35s;
}
.btn-gold:hover{
  background:linear-gradient(135deg,#a8925c,#c5b478);
  box-shadow:0 4px 18px rgba(191,167,111,.5);
  transform:translateY(-2px);
}
.btn-outline-light{
  border:2px solid rgba(255,255,255,.8);
  border-radius:30px;
  padding:12px 26px;
  color:#fff;
  transition:.3s;
}
.btn-outline-light:hover{
  background:rgba(255,255,255,.15);
}

/* ===============================
   SERVICES
=============================== */
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:40px;
}
.service-item{
  background:#fdfdfd;
  border-radius:18px;
  padding:40px;
  box-shadow:0 8px 25px rgba(0,0,0,.05);
  transition:.35s;
}
.service-item:hover{
  transform:translateY(-8px);
  box-shadow:0 10px 30px rgba(191,167,111,.25);
}
.service-item h3{
  color:var(--accent);
  margin-bottom:15px;
}

/* ===============================
   VIDEO GRID
=============================== */
.video-grid{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}
.video-card{
  position:relative;
  aspect-ratio:16/9;
  border-radius:18px;
  overflow:hidden;
  background:#000;
  box-shadow:0 10px 30px rgba(0,0,0,.45);
}
.video-card iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:none;
}
@media(max-width:768px){
  .video-grid{grid-template-columns:1fr}
}

/* ===============================
   REVIEWS
=============================== */
.review{
  display:flex;
  gap:18px;
  background:rgba(0,0,0,.45);
  padding:22px;
  border-radius:16px;
  color:#eaeaea;
}
.review-photo{
  width:64px;
  height:64px;
  border-radius:50%;
  overflow:hidden;
  border:2px solid rgba(191,167,111,.6);
}
.review-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* ===============================
   CALENDAR
=============================== */
.calendar-card{
  max-width:650px;
  margin:0 auto;
  background:#fdfdfd;
  border-radius:20px;
  padding:40px;
  box-shadow:0 6px 25px rgba(0,0,0,.05);
}
.calendar-grid{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:6px;
}
.calendar-cell{
  aspect-ratio:1;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:8px;
}
.calendar-cell.selected{
  background:var(--accent);
  color:#fff;
}

/* ===============================
   CONTACTS
=============================== */
.contacts-row{
  display:flex;
  gap:40px;
}
.contact-form{
  flex:1;
  background:#fdfdfd;
  padding:35px;
  border-radius:20px;
}
.map-container{
  flex:1;
  border-radius:20px;
  overflow:hidden;
}
@media(max-width:900px){
  .contacts-row{flex-direction:column}
}

/* ===============================
   FOOTER
=============================== */
.footer{
  background:#111;
  color:#ccc;
  padding:80px 20px 40px;
}
.footer-bottom{
  text-align:center;
  font-size:13px;
  margin-top:40px;
}
/* === FIX: PRICE BLOCK === */
.pricing-block {
  background: #fdfdfd;
  padding: 100px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.pricing-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}
/* === FIX: VIDEO GRID === */
.video-section {
  background: transparent;
  padding: 100px 0;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.video-card {
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}
/* === FIX: TOP GALLERY === */
.grid-gallery {
  max-width: 1100px;
  margin: 0 auto;
}

.grid-gallery img {
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
}
/* === FIX: BLOG === */
.blog-block {
  background: #fff;
  padding: 100px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.blog-card {
  background: #fdfdfd;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
/* === FIX: ABOUT TEXT === */
.about-section {
  background: #fff;
  padding: 100px 0;
}

.about-text {
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.7;
}
/* ======================================
   HARD FIX — MAIN PAGE LAYOUT OVERRIDE
   ====================================== */

/* ===== PRICE ===== */
.pricing-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 40px !important;
}

.pricing-card {
  background: #fff !important;
  border-radius: 18px !important;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06) !important;
}

@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ===== VIDEO ===== */
.video-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 28px !important;
}

.video-card {
  aspect-ratio: 16 / 9 !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  background: #000 !important;
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ===== TOP GALLERY ===== */
.grid-gallery {
  max-width: 1100px !important;
  margin: 0 auto !important;
}

.grid-gallery img {
  height: 260px !important;
  max-height: 260px !important;
  object-fit: cover !important;
}

/* ===== BLOG ===== */
.blog-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 35px !important;
}

.blog-card {
  background: #fdfdfd !important;
  border-radius: 16px !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05) !important;
}

@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ===== ABOUT TEXT ===== */
.about-text,
.about-text-block,
.about-section p {
  max-width: 850px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  line-height: 1.7 !important;
}

/* ===== GLOBAL FLEX KILL ===== */
.pricing-grid,
.video-grid,
.blog-grid {
  flex-direction: unset !important;
}
.blog-block {
  background: #fff;
  padding: 100px 0;
}
#tfolio .grid-gallery img {
  height: 220px;
}
/* === ABOUT: FIX ДЛЯ ГЛАВНОЙ === */
#about.about-section {
  background: #fff;
  padding: 100px 0;
}

#about .about-container {
  display: flex;
  gap: 60px;
  align-items: center;
}

#about .about-text-block {
  flex: 1 1 45%;
}

#about .section-title {
  font-size: 36px;
  margin-bottom: 24px;
  color: #111;
  text-align: left;
}

#about .about-text {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 18px;
}

/* галерея */
#about .about-gallery-grid {
  flex: 1 1 45%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

#about .about-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 14px;
  transition: transform .35s ease, box-shadow .35s ease;
}

#about .about-img:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 25px rgba(191,167,111,.3);
}

/* адаптив */
@media (max-width: 1024px) {
  #about .about-container {
    flex-direction: column;
    text-align: center;
  }

  #about .section-title {
    text-align: center;
  }

  #about .about-gallery-grid {
    width: 100%;
  }
}

@media (max-width: 600px) {
  #about .about-img {
    height: 200px;
  }
}
/* ===============================
   PRICING — фирменные названия пакетов
   =============================== */

#pricing .pricing-title {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;

  color: #bfa76f;

  margin-bottom: 22px;
  position: relative;
}

/* декоративная линия под названием */
#pricing .pricing-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  margin: 12px auto 0;

  background: linear-gradient(
    90deg,
    transparent,
    #bfa76f,
    transparent
  );
  opacity: 0.85;
}
/* акцент на карточки */
#pricing .pricing-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
  transition: transform .35s ease, box-shadow .35s ease;
}

#pricing .pricing-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 14px 40px rgba(0,0,0,0.12),
    0 0 22px rgba(191,167,111,0.25);
}
/* ===============================
   BLOG — фирменный стиль X.O EVENT
   =============================== */

#blog {
  background: #fff;
  padding: 100px 0;
}

/* заголовок */
#blog .section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  color: #bfa76f;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

#blog .section-header .subtitle {
  color: #777;
  font-size: 18px;
  margin-top: 12px;
  text-align: center;
}

/* сетка */
#blog .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
  margin-top: 60px;
}

/* карточка */
#blog .blog-card {
  background: #fdfdfd;
  border-radius: 20px;
  padding: 36px 34px 40px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease;
}

/* hover */
#blog .blog-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 14px 40px rgba(0,0,0,0.12),
    0 0 22px rgba(191,167,111,0.25);
}

/* тэг */
#blog .blog-card .tag {
  display: inline-block;
  background: linear-gradient(135deg,#bfa76f,#d8c58c);
  color: #111;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* заголовок карточки */
#blog .blog-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: #bfa76f;
  margin-bottom: 14px;
  line-height: 1.25;
}

/* текст */
#blog .blog-card p {
  color: #444;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 22px;
}

/* кнопка читать */
#blog .blog-card .chip {
  display: inline-block;
  background: transparent;
  border: 1px solid #bfa76f;
  color: #bfa76f;
  border-radius: 30px;
  padding: 8px 22px;
  font-size: 14px;
  font-weight: 500;
  transition: all .3s ease;
}

/* hover кнопки */
#blog .blog-card .chip:hover {
  background: linear-gradient(135deg,#bfa76f,#d8c58c);
  color: #111;
  box-shadow: 0 0 18px rgba(191,167,111,0.6);
}

/* ===============================
   АДАПТИВ
   =============================== */
@media (max-width: 768px) {
  #blog {
    padding: 70px 0;
  }

  #blog .section-header h2 {
    font-size: 28px;
  }

  #blog .blog-card {
    padding: 28px 24px 32px;
  }

  #blog .blog-card h3 {
    font-size: 20px;
  }
}
/* RESET ДЛЯ КАРТОЧЕК-ССЫЛОК */

 a.service-card,
 a.service-card:visited,
 a.service-card:hover,
 a.service-card:active {
  text-decoration: none !important;
  color: inherit !important;
}
/* === КНОПКА ВНУТРИ КАРТОЧКИ === */
.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-top: 28px;
  padding: 14px 30px;

  border-radius: 30px;
  background: linear-gradient(135deg, #bfa76f, #d8c58c);
  color: #111;

  font-size: 14px;
  font-weight: 600;
  letter-spacing: .4px;
  text-transform: uppercase;

  box-shadow:
    0 6px 20px rgba(191,167,111,.45),
    inset 0 1px 0 rgba(255,255,255,.4);

  transition: all .35s ease;
}

.service-card:hover .service-cta {
  transform: translateY(-3px);
  box-shadow:
    0 12px 35px rgba(191,167,111,.65),
    inset 0 1px 0 rgba(255,255,255,.5);
}
.service-card {
  position: relative;
  display: block;

  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.55),
    rgba(10,10,10,0.75)
  );

  border-radius: 24px;
  padding: 54px 44px;

  border: 1px solid rgba(191,167,111,.25);

  box-shadow:
    0 20px 50px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.08);

  transition: all .45s ease;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(191,167,111,.25),
    transparent 65%
  );
  opacity: 0;
  transition: opacity .45s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 35px 90px rgba(0,0,0,.85),
    0 0 40px rgba(191,167,111,.45);
  border-color: rgba(191,167,111,.55);
}
.service-card h3 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: #d8c58c;
  margin-bottom: 18px;
}
.service-card.service-item {
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.55),
    rgba(10,10,10,0.75)
  ) !important;

  box-shadow:
    0 20px 50px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.08) !important;
}
/* === FIX: PHOTO GRID (HARD) === */
#tfolio .grid-gallery {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
  gap: 20px !important;
  align-items: stretch;
}

#tfolio .grid-gallery a {
  display: block !important;
}

#tfolio .grid-gallery img {
  width: 100% !important;
  height: 260px !important;
  object-fit: cover !important;
  border-radius: 14px !important;
}
/* === VIDEO GRID FIX === */
.video-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.video-card {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 12px 35px rgba(0,0,0,.45);
}

/* превью */
.video-preview {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.35)),
    url("/assets/img/video-preview.webp") center/cover no-repeat;
}

/* кнопка play */
.video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle, #d8c58c, #bfa76f);
  box-shadow: 0 0 30px rgba(191,167,111,.8);
}

.video-play::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 22px;
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent #111;
}

.video-card:hover .video-play {
  transform: scale(1.15);
}

/* mobile */
@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}
#tfolio .gallery-subtitle {
  margin-top: 60px;
}

#tfolio .center {
  margin-top: 40px;
}
/* ===============================
   HERO (ГЛАВНАЯ)
=============================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('/assets/img/Glavnaya.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(17,17,17,0.75) 25%,
    rgba(17,17,17,0.55) 75%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInUp 1.2s ease;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 16px; }
}
/* === FORCE HEADER STYLE (как contacts) === */

header.main-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 99999 !important;

  background: rgba(0,0,0,0.75) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;

  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
}

header.main-header * {
  background: transparent !important;
}

header.main-header .header-container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 16px 48px !important;
}

header.main-header .logo img {
  height: 56px !important;
  width: auto !important;
  object-fit: contain !important;
}

/* меню */
header.main-header .nav-list a {
  color: #f5f1e3 !important;
  font-weight: 500 !important;
  font-size: 15px !important;
  text-decoration: none !important;
  transition: color .25s ease, text-shadow .25s ease !important;
}

/* ЗОЛОТОЕ СВЕЧЕНИЕ */
header.main-header .nav-list a:hover {
  color: #bfa76f !important;
  text-shadow: 0 0 10px rgba(191,167,111,.7) !important;
}

/* чтобы контент не ушёл под fixed header */
body {
  padding-top: 88px 
}
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  background: url('/assets/img/Glavnaya.webp') center/cover no-repeat;
}

}
/* === HARD FIX: CENTER PRICING HEADERS RELATIVE TO CARDS === */

#pricing-photo,
#pricing-video {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

#pricing-photo .pricing-header,
#pricing-video .pricing-header {
  width: 100%;
  text-align: center;
}
/* ===============================
   ABSOLUTE HARD FIX — PRICING HEADERS
   =============================== */

/* делаем секции контейнерами */
#pricing-photo,
#pricing-video {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

/* заголовок = как карточки */
#pricing-photo .pricing-header,
#pricing-video .pricing-header {
  width: 100% !important;
  max-width: 1200px !important;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* карточки — тоже центр */
#pricing-photo .pricing-grid,
#pricing-video .pricing-grid {
  width: 100% !important;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.pricing-note {
  max-width: 1200px;
  margin: 40px auto 0;
  text-align: center;
  font-weight: 600;
  font-size: 17px;
  color: #333;
}
/* === RESET ДЛЯ КАРТОЧЕК-ССЫЛОК === */
a.service-card,
a.service-card:visited,
a.service-card:hover,
a.service-card:active {
  text-decoration: none !important;
  color: inherit !important;
}

/* текст внутри карточки */
a.service-card h3,
a.service-card p {
  color: #d8c58c;
  text-decoration: none !important;
}

/* === ЗОЛОТАЯ КНОПКА ВНУТРИ КАРТОЧКИ === */
a.service-card .service-cta {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 30px;

  border-radius: 30px;
  background: linear-gradient(135deg, #bfa76f, #d8c58c);
  color: #111 !important;

  font-size: 14px;
  font-weight: 600;
  letter-spacing: .4px;
  text-transform: uppercase;

  box-shadow:
    0 6px 20px rgba(191,167,111,.45),
    inset 0 1px 0 rgba(255,255,255,.4);

  transition: all .35s ease;
}

/* hover */
a.service-card:hover .service-cta {
  transform: translateY(-3px);
  box-shadow:
    0 12px 35px rgba(191,167,111,.65),
    inset 0 1px 0 rgba(255,255,255,.5);
}

/* === FAQ SECTION === */
.faq-section {
  background: #fff;
  padding: 100px 0;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
/* ===== FAQ CLICK FIX ===== */
.faq-section {
  position: relative;
}

.faq-section img {
  position: relative;
  z-index: 1;
}

.faq-section > div {
  position: relative;
  z-index: 2;
}

.faq-question {
  all: unset;
  display: block;
  width: 100%;
  cursor: pointer;
  font-size: 16px;
  color: #fff;
  padding: 10px 0;
  line-height: 1.4;
}

/* Фото */
.faq-image img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
}

/* Контент */
.faq-title {
  font-size: 38px;
  margin-bottom: 40px;
  color: #bfa76f;
}

/* Вопрос */
.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;

  display: flex;
  justify-content: space-between;
  align-items: center;

  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  font-size: 26px;
  color: #bfa76f;
  transition: transform .3s ease;
}

/* Ответ */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  padding-right: 40px;
}

/* Активное состояние */
.faq-item.active .faq-answer {
  max-height: 200px;
  margin-bottom: 20px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-question {
  all: unset;
  display: block;
  width: 100%;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  padding: 6px 0;
}

.faq-item {
  position: relative;
  z-index: 2;
}

/* Адаптив */
@media (max-width: 900px) {
  .faq-container {
    grid-template-columns: 1fr;
  }

  .faq-title {
    text-align: center;
  }

  .faq-image img {
    max-height: 360px;
  }
}
header img.logo {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

@media (max-width: 768px) {
  header img.logo {
    height: 40px;
    max-width: 150px;
  }
}
header {
  min-height: 72px;
}
@media (max-width: 768px) {

  .faq-section {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 28px;
    margin: 50px auto;
  }

  .faq-section img {
    max-width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 18px;
    margin: 0 auto;
    display: block;
  }

}
/* ===== FAQ MOBILE FIX ===== */
@media (max-width: 768px) {
  .faq-section {
    display: flex !important;
    flex-direction: column;
    gap: 24px;
    margin: 50px auto;
    padding: 0 16px;
  }

  .faq-section img {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    border-radius: 16px;
  }
}
@media (max-width: 768px) {
  .faq-section {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 40px auto;
  }

  .faq-section img {
    max-height: 220px;
    object-fit: cover;
  }
}
.fast-delivery {
  padding: 120px 0;
  margin: 120px 0;
}

.fast-delivery .container {
  background-color: #f6f6f6;
  padding: 80px 80px;
}
@media (max-width: 768px) {
  .fast-delivery {
    padding: 70px 0;
    margin: 80px 0;
  }

  .fast-delivery .container {
    padding: 40px 20px;
  }

  .fast-delivery h2 {
    font-size: 26px;
  }

  .fast-delivery p {
    font-size: 16px;
  }
}
.fast-delivery {
  margin-bottom: 20px;
}

#tfolio.section {
  padding-top: 20px;
}
/* === FAQ GOLD COLOR PATCH === */

.faq-section .faq-question {
  color: #d4af37; /* золотой */
  transition: color 0.25s ease;
}

.faq-section .faq-question:hover {
  color: #f0c75e; /* светлее золото при ховере */
}

.faq-section .faq-icon {
  color: #d4af37;
  transition: color 0.25s ease, transform 0.25s ease;
}

.faq-section .faq-question:hover .faq-icon {
  color: #f0c75e;
}
@font-face {
  font-family: 'Montserrat';
  font-display: swap;
}
.video-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,.7);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  z-index: 5;
}
<!-- === СТИЛИ ГАЛЕРЕИ === -->
<style>
.grid-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.grid-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  transition: all 0.35s ease;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}
.grid-gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 24px rgba(191,167,111,0.35);
}
.gallery-subtitle {
  font-size: 24px;
  font-weight: 500;
  margin: 40px 0 20px;
  color: #bfa76f;
}
.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, #bfa76f 0%, #d8c58c 100%);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 26px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.35s ease;
}
.btn-gold:hover {
  background: linear-gradient(135deg, #a8925c 0%, #c5b478 100%);
  box-shadow: 0 4px 18px rgba(191,167,111,0.4);
  transform: translateY(-2px);
}
.center { text-align: center; }

/* Видео-превью */
.video-thumb {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}
.video-thumb .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, rgba(191,167,111,1) 0%, rgba(217,195,129,1) 100%);
  clip-path: polygon(30% 20%, 80% 50%, 30% 80%);
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(191,167,111,0.7);
}
.video-thumb:hover .play-icon {
  background: radial-gradient(circle, rgba(255,230,150,1) 0%, rgba(217,195,129,1) 100%);
  transform: translate(-50%, -50%) scale(1.15);
}

/* === Золотые стрелки Lightbox === */
.glightbox-clean .gprev svg,
.glightbox-clean .gnext svg {
  stroke: #bfa76f !important;
  fill: #bfa76f !important;
  width: 42px !important;
  height: 42px !important;
  filter: drop-shadow(0 0 8px rgba(191,167,111,0.5));
  transition: transform 0.25s ease;
}
.glightbox-clean .gprev:hover svg,
.glightbox-clean .gnext:hover svg {
  transform: scale(1.25);
  stroke: #e7d4a4 !important;
  fill: #e7d4a4 !important;
}
.glightbox-clean .gclose svg {
  stroke: #bfa76f !important;
  fill: #bfa76f !important;
}
</style>
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.content a,
.article a,
.text a {
  color: #d4af37;
}
a {
  color: #d4af37; /* классический золотой */
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover,
a:focus {
  color: #f1c232; /* светлее при наведении */
  opacity: 0.9;
}

a:active {
  color: #b8962e; /* темнее при клике */
}