/* =====================================================
   DOLLAR BOUQUET BAKU — Index Page Styles
   ===================================================== */

/* --- Typography helpers --- */
.lbl {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.lbl::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.lbl.w {
  color: var(--gold2);
}

.lbl.w::after {
  background: var(--gold2);
}

.h-title {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
}

.h-title em {
  font-style: italic;
}

.h-title.w {
  color: white;
}

.body-t {
  font-size: 14px;
  color: var(--mist);
  line-height: 1.8;
}

.body-t.w {
  color: rgba(255, 255, 255, 0.4);
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  height: 100svh;
  min-height: 600px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  background: var(--ink);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 60px 72px;
  position: relative;
}

.hero-tag {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 5.5vw, 84px);
  font-weight: 700;
  line-height: 1.05;
  color: white;
  margin-bottom: 28px;
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold2);
}

.hero-body {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
  max-width: 360px;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--ink);
  padding: 15px 32px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}

.btn-gold:hover {
  background: var(--gold2);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  letter-spacing: 0.06em;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.btn-ghost i.arr {
  transition: transform 0.2s;
}

.btn-ghost:hover {
  color: white;
}

.btn-ghost:hover i.arr {
  transform: translateX(4px);
}

.hero-seq {
  position: absolute;
  bottom: 72px;
  right: 28px;
  font-family: var(--serif);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.15);
  writing-mode: vertical-rl;
  letter-spacing: 0.15em;
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: hzoom 14s ease-in-out infinite alternate;
}

.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.15) 0%, transparent 40%);
}

@keyframes hzoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.00); }
}

/* =====================================================
   SCROLL HINT
   ===================================================== */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 5;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  animation: spulse 2.4s ease-in-out infinite;
}

@keyframes spulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 0.7; transform: scaleY(0.6); }
}

.scroll-txt {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

/* =====================================================
   TICKER
   ===================================================== */
.ticker {
  background: var(--ink);
  overflow: hidden;
  display: flex;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: tick 22s linear infinite;
}

.ticker-item {
  padding: 13px 40px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}

.ticker-item strong {
  color: var(--gold2);
  font-weight: 500;
}

@keyframes tick {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =====================================================
   EDITORIAL SPLITS
   ===================================================== */
.ed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}

.ed.rev {
  direction: rtl;
}

.ed.rev > * {
  direction: ltr;
}

.ed-img {
  overflow: hidden;
}

.ed-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.ed:hover .ed-img img {
  transform: scale(1.04);
}

.ed-body {
  background: var(--ink);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
  position: relative;
  overflow: hidden;
}

.ed-bg-num {
  position: absolute;
  right: 24px;
  bottom: 16px;
  font-family: var(--serif);
  font-size: 140px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.ed-price {
  font-family: var(--serif);
  font-size: 48px;
  color: white;
  margin-top: 28px;
  line-height: 1;
}

.ed-price small {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.3);
  margin-left: 6px;
  font-weight: 300;
}

.ed-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold2);
  transition: gap 0.25s;
}

.ed-cta:hover {
  gap: 18px;
}

/* =====================================================
   HORIZONTAL SCROLL CAROUSEL
   ===================================================== */
.hs-wrap {
  background: var(--warm);
}

.hs-head {
  padding: 80px 40px 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
}

.hs-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
  transition: color 0.2s, gap 0.2s;
}

.hs-all:hover {
  color: var(--ink);
  gap: 14px;
}

.hs-track {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  padding: 0 40px 64px;
  scrollbar-width: none;
  cursor: grab;
}

.hs-track::-webkit-scrollbar {
  display: none;
}

.hs-track.drag {
  cursor: grabbing;
}

.hc {
  flex: 0 0 300px;
  background: white;
  overflow: hidden;
  transition: transform 0.35s;
}

.hc:hover {
  transform: translateY(-6px);
}

.hc-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.hc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.hc:hover .hc-img img {
  transform: scale(1.06);
}

.hc-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--ink);
  color: white;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 11px;
}

.hc-body {
  padding: 18px 20px 22px;
}

.hc-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}

.hc-sub {
  font-size: 12px;
  color: var(--mist);
  margin-bottom: 16px;
}

.hc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hc-price {
  font-family: var(--serif);
  font-size: 21px;
  color: var(--ink);
}

.hc-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ink);
  color: white;
  padding: 9px 15px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.hc-btn:hover {
  background: var(--gold);
  color: var(--ink);
}

/* =====================================================
   OCCASIONS GRID
   ===================================================== */
.oc-wrap {
  background: var(--offwhite);
}

.oc-head {
  padding: 80px 40px 44px;
}

.oc-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 300px;
  gap: 2px;
  padding: 0 40px 80px;
}

.oc {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.oc:nth-child(1) { grid-column: 1/6; grid-row: 1/3; }
.oc:nth-child(2) { grid-column: 6/9; }
.oc:nth-child(3) { grid-column: 9/13; }
.oc:nth-child(4) { grid-column: 6/10; }
.oc:nth-child(5) { grid-column: 10/13; }

.oc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.oc:hover img {
  transform: scale(1.07);
}

.oc-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.08) 55%, transparent 80%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: background 0.4s;
}

.oc:hover .oc-ov {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.18) 55%, transparent 80%);
}

.oc-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: white;
  line-height: 1.15;
  margin-bottom: 6px;
}

.oc:nth-child(1) .oc-name {
  font-size: 34px;
}

.oc-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}

.oc:hover .oc-sub {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   PROOF / STATS BAND
   ===================================================== */
.proof-band {
  background: var(--ink);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.proof-cell {
  padding: 64px 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.proof-cell:last-child {
  border-right: none;
}

.proof-n {
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}

.proof-n sup {
  font-size: 26px;
  color: var(--gold2);
}

.proof-l {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* =====================================================
   REVIEWS
   ===================================================== */
.rv-wrap {
  padding: 100px 40px;
  background: var(--offwhite);
}

.rv-head {
  margin-bottom: 52px;
}

.rv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.rv-card {
  background: white;
  padding: 40px 36px;
  border-left: 3px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}

.rv-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.rv-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

.rv-stars i {
  font-size: 12px;
  color: var(--gold);
}

.rv-q {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: 24px;
}

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

.rv-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 17px;
}

.rv-nm {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

.rv-dt {
  font-size: 11px;
  color: var(--mist);
  margin-top: 2px;
}

/* =====================================================
   CTA BLOCK
   ===================================================== */
.cta-block {
  background: var(--ink);
  padding: 120px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('image/Background.JPG');
  background-size: cover;
  background-position: center;
  opacity: 0.07;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-lbl {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cta-lbl::before,
.cta-lbl::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold2);
}

.cta-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 18px;
}

.cta-title em {
  font-style: italic;
}

.cta-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
  margin-bottom: 48px;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-wa-big {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: white;
  padding: 17px 36px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-wa-big:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-outline-big {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.55);
  padding: 16px 32px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline-big:hover {
  border-color: rgba(255, 255, 255, 0.55);
  color: white;
}

/* =====================================================
   RESPONSIVE — INDEX
   ===================================================== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-right {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .hero-right::after {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.6) 0%, rgba(10, 10, 10, 0.88) 100%);
  }

  .hero-left {
    background: transparent;
    z-index: 1;
    min-height: 100svh;
  }

  .ed {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .ed .ed-img {
    aspect-ratio: 16/9;
  }

  .ed.rev {
    direction: ltr;
  }

  .oc-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }

  .oc:nth-child(1) {
    grid-column: 1/3;
    aspect-ratio: 16/9;
  }

  .oc:nth-child(n) {
    grid-column: auto;
    aspect-ratio: 4/3;
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-cell {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .rv-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .ft-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hero-left {
    padding: 0 24px 56px;
  }

  .ed-body {
    padding: 52px 28px;
  }

  .hs-head {
    padding: 56px 24px 0;
  }

  .hs-track {
    padding: 0 24px 48px;
  }

  .hc {
    flex: 0 0 255px;
  }

  .oc-head {
    padding: 56px 24px 32px;
  }

  .oc-grid {
    padding: 0 24px 56px;
  }

  .proof-cell {
    padding: 44px 24px;
  }

  .proof-n {
    font-size: 42px;
  }

  .rv-wrap,
  .cta-block {
    padding: 72px 24px;
  }
}

@media (max-width: 480px) {
  .hero-h1 {
    font-size: 44px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .oc:nth-child(1) {
    grid-column: 1;
    aspect-ratio: 4/3;
  }
}
