@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {  
    margin: 0 auto;
    background: #080608;
    color: #f0ecf0;
    font-family: "Space Mono", monospace;
    font-weight: 400;
    overflow-x: hidden;
    
}

a {
    text-decoration: none;
    display: block;
}

li {
    list-style: none;
}

header {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 60px;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(192, 57, 43, .15);
    background: rgba(8, 6, 8, .9);
    backdrop-filter: blur(8px);
}

.header-logo {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    letter-spacing: .12em;
    color: #f0ecf0;
    
}

.header-logo-red {
    color: red;
}

.header-logo-link {
    transition: all 600ms ease;
}

.header-logo-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #1c1008, #c0392b);
    transition: width 600ms cubic-bezier(0.34, 1.56, 0.64, 1); /* bounce эффект */
    border-radius: 2px;
}

.header-logo-link:hover {
    transition: all 600ms ease;
    opacity: 1;
    color: #c0392b;
    transform: scale(1.08);
}

.header-logo-link:hover::after {
    width: 100%;
}

.header-navigation ul {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.header-navigation  a,
.btn-bare  {
    font-size: .65rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #b0a8b0;
    opacity: .6;
    transition: opacity .2s, color .2s;
    transition: all 600ms ease;
}


.header-navigation a:after,
.btn-bare:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #1c1008, #c0392b);
    transition: width 600ms cubic-bezier(0.34, 1.56, 0.64, 1); /* bounce эффект */
    border-radius: 2px;
}

.header-navigation a:hover,
.btn-bare:hover {
    transition: all 600ms ease;
    opacity: 1;
    color: #c0392b;
    transform: scale(1.08);
}

.header-navigation a:hover:after,
.btn-bare:hover:after {
    width: 100%;
}

.header-btn {
    font-family: 'Space Mono', monospace;
    font-size: .65rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #f0ecf0;
    background: transparent;
    border: 1px solid #c0392b;
    padding: 10px 24px;
    cursor: pointer;
    transition: all 600ms ease;
}

.header-btn:hover {
    transition: all 600ms ease;
    background: #c0392b;
    color: #f0ecf0;
}

.hero {
    padding: 95px 60px;
    display: flex;
}

.hero-left {
    width: 50%;
}

.hero-eyebrow {
    color: #c0392b;
    font-size: .62rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.hero-left h1 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(5rem, 13vw, 14rem);
    line-height: .88;
    letter-spacing: .01em;
    color: #f0ecf0;
    margin-bottom: 8px;
}

.stroke {
    color: transparent;
    -webkit-text-stroke: 2px #f0ecf0;
}

.hero-title-red {
    color: #c0392b;
}

.hero-text {
    font-size: .82rem;
    line-height: 1.9;
    color: #b0a8b0;
    max-width: 420px;
    margin: 28px 0 48px;
    border-left: 2px solid #c0392b;
    padding-left: 20px;
}

.hero-btn {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-red, 
.faq-left a {
    display: inline-block;
    background: #c0392b;
    color: #f0ecf0;
    font-family: 'Space Mono', monospace;
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 15px 36px;
    text-decoration: none;
    transition: all 600ms ease;
}

.btn-red:hover, 
.faq-left a:hover {
    transition: all 600ms ease;
    transform: translateY(-5px);
}



.hero-right {
    width: 40%;
    position: relative;
}

.hero-emblem{
    width: 320px;
    height: 320px;
    position: absolute;
    right: 12%;
    top: 50%;
    width: 320px;
    height: 320px;
    opacity: .06; /* почти невидимая — фоновый декор */
    animation: slowSpin 30s linear infinite; /* ← вот анимация */
}

.hero-counter {
    position: absolute;
    right: 60px;
    bottom: 0px;
    text-align: right;
    z-index: 2;
    
}

.big {
    font-family: 'Anton', sans-serif;
    font-size: 5rem;
    color: #c0392b;
    line-height: 1;
    opacity: .25;
}

.lbl {
    font-size: .58rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #b0a8b0;
    opacity: .4;
}

@keyframes slowSpin {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}


.ticker {
  overflow: hidden;
  background: #c0392b; /* тёмный фон */
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* 2. Трек — всё в одну строку и запускаем анимацию */
.ticker-track {
  display: flex;
  gap: 50px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 45s linear infinite;
}

/* 3. Каждое слово */
.ticker-item {
  font-family: 'Anton', sans-serif;
  font-size: .85rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color:#f0ecf0;
  padding: 0 8px;
  flex-shrink: 0; /* не сжиматься */
}

/* 4. Точка-разделитель между словами */
.ticker-sep {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #f0ecf0; /* золотистый */
  border-radius: 50%;
  margin-left: 30px;
  vertical-align: middle;
  margin-bottom: 2px;
}

.about {
    display: flex;
    padding: 120px 60px;
    justify-content: space-between;
    align-items: center;
}

.about-img {
    width: 40%;
    opacity: 1;
    border: 1px solid rgba(192, 57, 43, .2);
}

.about-img img {
    width: 100%;
    height: auto;
}

.about-info {
    width: 50%;
}

.about-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: .95;
    letter-spacing: .04em;
    margin-bottom: 28px;

    
}

.about-text {
    font-size: .8rem;
    line-height: 1.95;
    color: #b0a8b0;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(192, 57, 43, .2);
    
}

.about-text p {
    margin-bottom: 16px;
}

.about-label {
    display: flex;
    gap: 50px;
}

.ab-lbl h2 {
    font-family: 'Anton', sans-serif;
    font-size: 2.8rem;
    color: #c0392b;
    line-height: 1;
}

.ab-lbl p {
    font-size: .6rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #b0a8b0;
    opacity: .5;
    margin-top: 4px;
}

.services {
    padding: 60px 120px;
    background: #100d10;
}


.services-logo {
    font-family: 'Anton', sans-serif;
    font-size: 2.8rem;
    line-height: .88;
    letter-spacing: .04em;
    margin-bottom: 80px;
}

.services-logo-red {
    color: #c0392b;
}

.services-card {
        position: relative;
        opacity: 1;
        display: flex;
        background: #161216;
        align-items: center;
        gap: 80px;
        padding: 32px 40px;
        margin-bottom: 2px;
        transition: all 600ms ease;
}

.services-card:hover {
    transition: all 600ms ease;
    opacity: .7;
    border-left:2px solid #c0392b;
}

.services-card-price {
    position: absolute;
    right: 50px;
}

.services-card h3 {
    font-family: 'Anton', sans-serif;
    font-size: 1.6rem;
    color: #c0392b;
    opacity: .3;
}

.services-card-text h3 {
    color: #fff;
    opacity: 1;
}

.services-card-text p {
    font-size: .72rem;
    line-height: 1.7;
    color: #b0a8b0;
    opacity: .55;
    max-width: 340px;
}

.artist {
    padding: 120px 60px;
}

.artist-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
}

.artist-card {
    width: 33%;
    transition: all 600ms ease;

}

.artist-card:hover {
    border-right: 2px solid #c0392b;
    transition: all 600ms ease;
}

.artist-card h3 {
    font-family: 'Anton', sans-serif;
    font-size: 1.4rem;
    letter-spacing: .06em;
    margin-bottom: 6px;
    margin-top: 30px;
}

.artist-card span {
    font-size: .62rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #c0392b;
    opacity: .8;
}

.artist-card p {
    font-size: .65rem;
    color: #b0a8b0;
    opacity: .4;
    margin-top: 4px;
}

.process {
    padding: 120px 60px;
    background: #100d10;
}

.process-logo h1 {
    font-family: 'Anton', sans-serif;
    font-size: 2.8rem;
    line-height: .88;
    letter-spacing: .04em;
}

.process-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
}

.process-card {
    flex: 1 1 250px;
    margin-top: 50px;
    background: #161216;
    padding: 40px 32px;
    transition: all 600ms ease;
}

.process-card:hover {
    border-top: 2px solid #c0392b;
    transition: all 600ms ease;
}

.process-card h2 {
    font-family: 'Anton', sans-serif;
    font-size: 4rem;
    color: #c0392b;
    opacity: .15;
    line-height: 1;
    margin-bottom: 20px;
}

.process-card h4 {
    font-family: 'Anton', sans-serif;
    font-size: 1.2rem;
    letter-spacing: .06em;
    margin-bottom: 12px;
}

.process-card p {
    font-size: .75rem;
    line-height: 1.85;
    color: #b0a8b0;
    opacity: .55;
}

.faq {
    padding: 120px 60px;
    background: #080608;
    display: flex;
    gap: 80px;
}

.faq-left {
    width: 50%;
}

.faq-logo h1 {
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
}

.faq-logo {
    margin-bottom: 40px;
}

.faq-logo p {
    font-size: .8rem;
    line-height: 1.9;
    color: #b0a8b0;
    opacity: .55;
    margin-top: 24px;
    margin-bottom: 40px;
}




.faq-list {
    width: 50%;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.1);
}


.faq-question {
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none; /* текст не выделяется при клике */
}

/* плюсик справа */
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform .3s ease;
}

/* когда открыт — плюс поворачивается в крест */
.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;          /* скрыт */
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  opacity: .5;
  font-size: .85rem;
  line-height: 1.85;
}

/* когда открыт */
.faq-item.open .faq-answer {
  max-height: 300px;      /* достаточно большое значение */
  padding-bottom: 20px;
}

.bookcta {
    position: relative;
    overflow: hidden;
    background: #c0392b;
    padding: 120px 60px;
}

.bookcta::before {
  content: 'BOOK';           /* текст на фоне */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  font-family: 'Anton', sans-serif;
  font-size: 28vw;           /* огромный */
  color: rgba(0, 0, 0, .08); /* почти прозрачный */
  letter-spacing: .05em;

  pointer-events: none;  /* чтобы не мешал кликам */
  user-select: none;     /* чтобы не выделялся */
  white-space: nowrap;
}

.bookcta div {
    text-align: center;
}

.bookcta span {
    font-size: .62rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .65);
    position: relative;
    
}

.bookcta h2 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(3rem, 9vw, 9rem);
    line-height: .88;
    color: #f0ecf0;
    margin-bottom: 48px;
    margin-top: 20px;
    position: relative;
}

.bookcta a {
    display: inline-block;
    background: #f0ecf0;
    color: #c0392b;
    font-family: 'Space Mono', monospace;
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    padding: 18px 52px;
    text-decoration: none;
    position: relative;
    font-weight: 700;
    transition: all 600ms ease;
}

.bookcta a:hover {
    transition: all 600ms ease;
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(28, 16, 8, 0.65);
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px;
    background: #100d10;
}

.footer-logo p {
    font-size: .72rem;
    opacity: .3;
    margin-top: 8px;
    line-height: 1.7;
    max-width: 220px;
}

.footer-col h4 {
    font-size: .6rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color:#c0392b;
    margin-bottom: 18px;
    opacity: .8;
}

.footer-col p, a {
    display: block;
    font-size: .75rem;
    opacity: .4;
    line-height: 2.1;
    color: inherit;
    text-decoration: none;
    transition: opacity .2s;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); } /* -50% потому что список задублирован */
}

@media (max-width: 1024px) {
    .services {
        padding: 60px 10px;
    }
}

@media (max-width: 768px) {
    header, .faq {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .hero {
        margin-top: 100px;
        padding: 80px 10px;
    }

    .hero-right {
        display: none;
    }

    .about-img {
        display: none;
    }


    .about, .process, .faq, .bookcta  {
        
        padding: 60px 10px;
    }

    .about-info {
        width: 100%;
    }

    .services-card-price {
        display: none;
    }

    .services-nam {
        display: none;
    }

    .artist {
        padding: 120px 10px;
    }

    .artist-card {
        width: 100%;
        margin-top: 20px;
    }

    .faq-left, .faq-list {
        width: 100%;
    }

    footer {
        display: flex;
        flex-wrap: wrap;
    }

}

@media (max-width: 425px) {
    .header-navigation ul {
        display: flex;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hero {
        margin-top: 160px;
    }
}


.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

/* когда класс visible добавляется — элемент появляется */
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d3 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }
