/* ===== RESET & BASE ===== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      background-color: #0b0f0d;
      color: #e9dccf;
      font-family: 'Inter', sans-serif;
      font-weight: 300;
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
      scroll-behavior: smooth;
    }
    img {
      display: block;
      max-width: 100%;
      height: auto;
    }
    a {
      color: inherit;
      text-decoration: none;
    }
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }
    /* ===== ШРИФТЫ ===== */
    h1, h2, h3, h4, .logo, .collection-title, .signature-title {
      font-family: 'Playfair Display', serif;
      font-weight: 400;
      letter-spacing: 0.02em;
    }
    .accent-gold {
      color: #c9a27e;
    }
    /* ===== КНОПКИ ===== */
    .btn-primary {
      display: inline-block;
      background: transparent;
      border: 1px solid #c9a27e;
      color: #e9dccf;
      padding: 14px 42px;
      font-size: 0.9rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      transition: all 0.3s ease;
      cursor: pointer;
      font-weight: 400;
      backdrop-filter: blur(2px);
    }
    .btn-primary:hover {
      background: #c9a27e;
      color: #0b0f0d;
      border-color: #c9a27e;
      box-shadow: 0 0 20px rgba(201, 162, 126, 0.3);
    }
    .btn-ghost {
      display: inline-block;
      background: transparent;
      border: 1px solid rgba(233, 220, 207, 0.3);
      color: #e9dccf;
      padding: 12px 32px;
      font-size: 0.8rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      transition: all 0.3s ease;
      cursor: pointer;
    }
    .btn-ghost:hover {
      border-color: #c9a27e;
      color: #c9a27e;
    }
    /* ===== HERO ===== */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 40px 20px;
      background: radial-gradient(circle at 70% 20%, #1a211e 0%, #0b0f0d 80%);
      position: relative;
    }
    .hero-logo {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 15vw, 6rem);
      font-weight: 400;
      letter-spacing: 0.3em;
      color: #e9dccf;
      margin-bottom: 0.2em;
      text-shadow: 0 0 40px rgba(201, 162, 126, 0.1);
    }
    .hero-logo span {
      color: #c9a27e;
    }
    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.2rem, 4vw, 2.2rem);
      font-weight: 300;
      font-style: italic;
      margin-top: 0.2em;
      color: #e9dccf;
      letter-spacing: 0.05em;
    }
    .hero-sub {
      font-size: clamp(0.9rem, 2vw, 1.2rem);
      font-weight: 300;
      letter-spacing: 0.25em;
      color: #c9a27e;
      margin-top: 0.5em;
      text-transform: uppercase;
    }
    .hero-cta {
      margin-top: 3.5rem;
    }
    .hero-cta .btn-primary {
      padding: 16px 56px;
      font-size: 0.8rem;
    }
    /* ===== БРЕНД-БЛОК ===== */
    .brand-story {
      padding: 80px 20px;
      text-align: center;
      background: #0b0f0d;
      border-top: 1px solid rgba(201, 162, 126, 0.1);
      border-bottom: 1px solid rgba(201, 162, 126, 0.1);
    }
    .brand-story p {
      max-width: 700px;
      margin: 0 auto;
      font-size: 1.3rem;
      font-weight: 300;
      letter-spacing: 0.03em;
      line-height: 1.8;
      color: #e9dccf;
    }
    .brand-story p span {
      color: #c9a27e;
      font-weight: 400;
    }
    /* ===== КОЛЛЕКЦИИ ===== */
    .collections {
      padding: 90px 20px 70px;
      background: #0b0f0d;
    }
    .section-label {
      font-size: 0.7rem;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: #c9a27e;
      margin-bottom: 1.5rem;
    }
    .collections-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 24px;
      margin-top: 20px;
    }
    .collection-card {
      background: rgba(255, 255, 255, 0.02);
      padding: 32px 16px;
      text-align: center;
      border: 1px solid rgba(201, 162, 126, 0.08);
      transition: all 0.4s ease;
      cursor: default;
      backdrop-filter: blur(2px);
    }
    .collection-card:hover {
      border-color: #c9a27e;
      background: rgba(201, 162, 126, 0.03);
      transform: translateY(-6px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.4);
    }
    .collection-card h3 {
      font-family: 'Playfair Display', serif;
      font-weight: 400;
      font-size: 1.4rem;
      letter-spacing: 0.05em;
      color: #e9dccf;
    }
    .collection-card p {
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      color: #c9a27e;
      margin-top: 8px;
      text-transform: uppercase;
      opacity: 0.7;
    }
    /* ===== ГАЛЕРЕЯ ===== */
    .gallery {
      padding: 60px 20px 80px;
      background: #0b0f0d;
    }
    .gallery-masonry {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 18px;
      margin-top: 20px;
    }
    .gallery-item {
      position: relative;
      overflow: hidden;
      background: #1a211e;
      aspect-ratio: 1 / 1.2;
      transition: all 0.4s ease;
      cursor: default;
    }
    .gallery-item:nth-child(2) {
      aspect-ratio: 1 / 1.5;
    }
    .gallery-item:nth-child(5) {
      aspect-ratio: 1 / 0.9;
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease, filter 0.5s ease;
      filter: saturate(0.9) brightness(0.8);
    }
    .gallery-item:hover img {
      transform: scale(1.03);
      filter: saturate(1) brightness(0.9);
    }
    .gallery-item .gallery-label {
      position: absolute;
      bottom: 20px;
      left: 20px;
      color: #e9dccf;
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      letter-spacing: 0.05em;
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.4s ease;
      background: rgba(11, 15, 13, 0.4);
      padding: 4px 16px;
      backdrop-filter: blur(3px);
      border-left: 2px solid #c9a27e;
    }
    .gallery-item:hover .gallery-label {
      opacity: 1;
      transform: translateY(0);
    }
    /* ===== СИГНАТУРНЫЕ БУКЕТЫ ===== */
    .signature {
      padding: 80px 20px 70px;
      background: #0b0f0d;
      border-top: 1px solid rgba(201, 162, 126, 0.1);
    }
    .signature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }
    .signature-card {
      background: rgba(255, 255, 255, 0.01);
      padding: 16px 16px 24px;
      border: 1px solid rgba(201, 162, 126, 0.06);
      transition: all 0.4s ease;
      text-align: center;
    }
    .signature-card:hover {
      border-color: rgba(201, 162, 126, 0.2);
      background: rgba(201, 162, 126, 0.02);
    }
    .signature-card img {
      width: 100%;
      aspect-ratio: 1/1.1;
      object-fit: cover;
      filter: saturate(0.9) brightness(0.8);
      transition: filter 0.4s;
    }
    .signature-card:hover img {
      filter: saturate(1) brightness(0.95);
    }
    .signature-card h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 400;
      margin-top: 16px;
      letter-spacing: 0.02em;
    }
    .signature-card .price {
      color: #c9a27e;
      font-size: 0.9rem;
      letter-spacing: 0.05em;
      margin: 6px 0 14px;
      font-weight: 300;
    }
    .signature-card .btn-ghost {
      padding: 8px 28px;
      font-size: 0.7rem;
      border-color: rgba(201, 162, 126, 0.3);
    }
    /* ===== CTA ФИНАЛ ===== */
    .cta-final {
      padding: 100px 20px 90px;
      text-align: center;
      background: #0b0f0d;
      border-top: 1px solid rgba(201, 162, 126, 0.08);
      border-bottom: 1px solid rgba(201, 162, 126, 0.08);
    }
    .cta-final h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 6vw, 3.5rem);
      font-weight: 300;
      font-style: italic;
      letter-spacing: 0.03em;
      color: #e9dccf;
    }
    .cta-final .btn-primary {
      margin-top: 2.5rem;
    }
    /* ===== FOOTER ===== */
    .footer {
      padding: 48px 20px 40px;
      background: #060908;
      text-align: center;
      font-size: 0.85rem;
      color: #a09587;
    }
    .footer .brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      letter-spacing: 0.2em;
      color: #e9dccf;
    }
    .footer .contacts {
      margin: 16px 0 10px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px 32px;
      font-weight: 300;
    }
    .footer .contacts a {
      color: #c9a27e;
      transition: color 0.2s;
    }
    .footer .contacts a:hover {
      color: #e9dccf;
    }
    .footer .copy {
      margin-top: 16px;
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      opacity: 0.5;
    }
    /* ===== FLOATING ACTION ===== */
    .floating-actions {
      position: fixed;
      bottom: 28px;
      right: 24px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      z-index: 999;
    }
    .floating-actions a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: #1a211e;
      color: #e9dccf;
      font-size: 1.6rem;
      border: 1px solid rgba(201, 162, 126, 0.2);
      transition: all 0.3s ease;
      backdrop-filter: blur(4px);
      box-shadow: 0 4px 20px rgba(0,0,0,0.6);
    }
    .floating-actions a:hover {
      background: #c9a27e;
      color: #0b0f0d;
      border-color: #c9a27e;
      transform: scale(1.05);
    }
    .floating-actions .wa { color: #25D366; border-color: #25D36630; }
    .floating-actions .wa:hover { background: #25D366; color: #0b0f0d; }
    .floating-actions .tg { color: #26A5E4; border-color: #26A5E430; }
    .floating-actions .tg:hover { background: #26A5E4; color: #0b0f0d; }
    /* ===== MOBILE-FIRST TWEAKS ===== */
    @media (max-width: 600px) {
      .hero-logo { letter-spacing: 0.15em; }
      .brand-story p { font-size: 1.1rem; }
      .collection-card { padding: 20px 10px; }
      .gallery-masonry { grid-template-columns: repeat(2, 1fr); gap: 10px; }
      .gallery-item { aspect-ratio: 1 / 1.1; }
      .gallery-item:nth-child(2), .gallery-item:nth-child(5) { aspect-ratio: 1 / 1.1; }
      .signature-grid { grid-template-columns: 1fr 1fr; }
      .floating-actions { bottom: 16px; right: 16px; }
      .floating-actions a { width: 46px; height: 46px; font-size: 1.3rem; }
    }
    @media (max-width: 420px) {
      .container { padding: 0 16px; }
      .hero-title { font-size: 1.6rem; }
      .signature-grid { grid-template-columns: 1fr; }
    }
    /* просто заглушки для фото (имитация) */
    .img-placeholder {
      background: #1a211e;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #c9a27e40;
      font-size: 0.8rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

.hero-logo-img {
  display:flex;
  justify-content:center;
  margin-bottom:20px;
}

.hero-logo-img img {
  width:220px;
  max-width:60vw;
  filter: drop-shadow(0 0 20px rgba(201,162,126,0.25));
}


/* ===== MOBILE HERO FIX (LIFT UP) ===== */
@media (max-width: 600px) {
  .hero {
    justify-content: center;
    padding-top: 10px !important;
  }

  .hero-logo-img {
    transform: translateY(-18px);
  }

  .hero-title {
    margin-top: -6px;
  }

  .hero-sub {
    margin-top: 0px;
  }
}


.hero-topline{
  text-align:center;
  letter-spacing:0.35em;
  font-size:0.75rem;
  color:#c9a27e;
  margin-bottom:18px;
  text-transform:uppercase;
  opacity:0.9;
}


/* ===== HERO POSITION FIX (V2 - REAL FIX) ===== */
.hero{
  justify-content:flex-start !important;
  padding-top:40px !important;
  padding-bottom:60px !important;
  min-height:100vh;
}

/* убираем лишние верхние отступы у первой строки */
.hero-topline{
  margin-top:0px !important;
}

/* логотип ближе к верху */
.hero-logo-img{
  margin-top:10px !important;
}

/* текст подтягиваем вверх */
.hero-title{
  margin-top:8px !important;
}

.hero-sub{
  margin-top:6px !important;
}

.hero-cta{
  margin-top:28px !important;
}


/* ===== HERO BALANCE FIX V3 (FINAL LUXURY LAYOUT) ===== */
.hero{
  min-height: 100vh;
  height: auto;
  padding-top: 50px !important;
  padding-bottom: 80px !important;
  justify-content: flex-start !important;
  display: flex;
  align-items: center;
}

/* ограничиваем ширину контента (убирает ощущение пустоты) */
.hero > div{
  max-width: 900px;
  width: 100%;
}

/* уменьшаем визуальный разрыв снизу */
.hero-cta{
  margin-bottom: 0px !important;
}

/* добавляем "визуальный якорь" снизу */
.hero::after{
  content:"";
  display:block;
  height:40px;
}


/* ===== HERO TRUE FIX (REMOVE FAKE 100vh BALANCE ISSUE) ===== */
.hero{
  min-height: unset !important;
  height: auto !important;

  padding-top: 60px !important;
  padding-bottom: 80px !important;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start !important;
}

/* гарантируем центрирование контента */
.hero > *{
  width: 100%;
  max-width: 900px;
}

/* убираем любые визуальные “разрывы” */
.hero-cta{
  margin-bottom: 0 !important;
}

/* logo-glow-v4 */


.hero-logo-img img{
  filter: drop-shadow(0 0 18px rgba(201,162,126,0.35))
          drop-shadow(0 0 40px rgba(201,162,126,0.15));
  transition: all 0.6s ease;
}

.hero-logo-img img:hover{
  transform: scale(1.01);
  filter: drop-shadow(0 0 25px rgba(201,162,126,0.55))
          drop-shadow(0 0 60px rgba(201,162,126,0.25));
}

/* lux-intro */


.lux-intro{
  text-align:center;
  padding: 40px 20px 10px;
  max-width: 900px;
  margin: 0 auto;
}

.lux-line{
  font-size: 1.15rem;
  color: rgba(233,220,207,0.75);
  margin: 10px 0;
  transition: all 0.5s ease;
}

.lux-line.active{
  color: #c9a27e;
  letter-spacing: 0.02em;
  text-shadow: 0 0 20px rgba(201,162,126,0.15);
}

.lux-line.active::before{
  content:"";
  display:inline-block;
  width:6px;
  height:6px;
  background:#c9a27e;
  border-radius:50%;
  margin-right:10px;
  box-shadow: 0 0 12px rgba(201,162,126,0.5);
}

/* phone-luxury */


.hero-phone{
  text-align:center;
  margin-top:10px;
  font-size:0.9rem;
  letter-spacing:0.25em;
  color: rgba(201,162,126,0.85);
  text-shadow: 0 0 10px rgba(201,162,126,0.15);
}

/* hover luxury glow */
.hero-phone:hover{
  color:#c9a27e;
  text-shadow: 0 0 18px rgba(201,162,126,0.35);
}

/* MOBILE LUXURY CONTACT BAR */
@media (max-width: 600px){

  .hero-phone{
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(11,15,13,0.6);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border: 1px solid rgba(201,162,126,0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    z-index: 9999;
  }

}

/* FIXED PHONE BAR */


.lux-phone-bar{
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99999;

  padding: 6px 14px;
  border-radius: 999px;

  background: rgba(11,15,13,0.72);
  backdrop-filter: blur(12px);

  border: 1px solid rgba(201,162,126,0.25);

  font-size: 0.8rem;
  letter-spacing: 0.25em;
}

.lux-phone-bar a{
  color: #c9a27e;
  text-decoration: none;
  display: block;
  white-space: nowrap;
}

.lux-phone-bar a:active{
  transform: scale(0.98);
}



/* карточка как объект luxury */
.collection-card{
  position: relative;
  transition: all 0.5s ease;
  transform: translateY(0);
  border: 1px solid rgba(201,162,126,0.10);
}

/* 3D depth hover */
.collection-card:hover{
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border-color: rgba(201,162,126,0.35);
}

/* текстовая иерархия */
.collection-card h3{
  letter-spacing: 0.08em;
}

.collection-card p span{
  display:block;
  font-size: 0.7rem;
  opacity: 0.7;
  margin-top: 4px;
  letter-spacing: 0.12em;
}

/* mobile fix */
@media (max-width: 900px){
  .luxury-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ===== SHAFO GRID RESTORE ===== */

.collections-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

/* MOBILE = COLUMN (как ты хотел изначально) */
@media (max-width: 900px){
  .collections-grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }
}


/* PREMIUM SHAFO FOOTER */
.shafo-footer {
  background: #070907;
  color: #f7efe6;
  border-top: 1px solid rgba(214, 178, 106, .22);
  padding: 78px 6vw 34px;
}

.shafo-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 42px;
  align-items: start;
}

.footer-logo {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 42px;
  letter-spacing: .22em;
  color: #d6b26a;
}

.footer-subtitle {
  margin-top: 8px;
  letter-spacing: .42em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255,255,255,.72);
}

.footer-brand p {
  max-width: 390px;
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,.62);
}

.footer-col h4 {
  margin: 0 0 22px;
  color: #d6b26a;
  font-size: 13px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 500;
}

.footer-col a,
.footer-col span {
  display: block;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-size: 16px;
  line-height: 1.9;
  transition: color .25s ease;
}

.footer-col a:hover {
  color: #d6b26a;
}

.footer-bottom {
  max-width: 1280px;
  margin: 58px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  gap: 22px;
  color: rgba(255,255,255,.42);
  font-size: 13px;
  letter-spacing: .08em;
}

@media (max-width: 900px) {
  .shafo-footer {
    padding: 58px 24px 30px;
  }

  .shafo-footer-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-logo {
    font-size: 34px;
  }
}

/* ===== FIX BIRTHDAY JOURNAL ===== */

.birthday-journal-section{
  padding:110px 6vw;
  background:
    radial-gradient(circle at top left,
      rgba(214,178,106,.12),
      transparent 36%),
    linear-gradient(135deg,
      #090706 0%,
      #17100d 100%);
}

.birthday-journal-inner{
  max-width:1280px;
  margin:0 auto;

  display:grid;
  grid-template-columns:
    minmax(280px,1.05fr)
    minmax(280px,.95fr);

  gap:54px;
  align-items:center;
}

.birthday-journal-image{
  border-radius:34px;
  overflow:hidden;
  min-height:620px;

  border:1px solid rgba(214,178,106,.26);
  box-shadow:0 34px 90px rgba(0,0,0,.55);
}

.birthday-journal-image img{
  width:100%;
  height:100%;
  min-height:620px;
  object-fit:cover;
  display:block;
}

.birthday-journal-content h2{
  font-size:clamp(42px,6vw,86px);
  line-height:.92;
  margin:0 0 28px;
}

.birthday-journal-content p{
  max-width:560px;
  font-size:20px;
  line-height:1.65;
  color:rgba(255,255,255,.78);
  margin-bottom:34px;
}

@media (max-width:860px){

  .birthday-journal-section{
    padding:72px 18px;
  }

  .birthday-journal-inner{
    grid-template-columns:1fr;
    gap:32px;
  }

  .birthday-journal-image,
  .birthday-journal-image img{
    min-height:460px;
  }
}

