*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#3b0019;
    font-family:'Montserrat',sans-serif;
    color:#fff;
    overflow-x:hidden;
}

.bg-overlay{
    position:fixed;
    inset:0;
    background:
    radial-gradient(circle at top, rgba(255,255,255,.05), transparent 40%);
    pointer-events:none;
}

.topbar{
    width:100%;
    padding:30px 60px;
}

.logo img{
    width:220px;
    max-width:100%;
    height:auto;
    display:block;
}

.hero{
    text-align:center;
    padding:10px 20px 50px;
}

.hero h1{
    font-family:'Cormorant Garamond',serif;
    font-size:72px;
    font-weight:700;
    margin-bottom:50px;
    color:#fff;
}

.mini-slider{
    display:flex;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
    margin-bottom:40px;
}

.mini-slider img{
    width:110px;
    height:150px;
    object-fit:cover;
    border-radius:10px;
    transition:.4s;
    opacity:.75;
}

.mini-slider img:hover{
    transform:translateY(-10px) scale(1.04);
    opacity:1;
}

.categories{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:20px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.category-card{
    position:relative;
    height:500px;
    overflow:hidden;
    border-radius:18px;
    text-decoration:none;
    box-shadow:0 15px 40px rgba(0,0,0,.45);
}

.card-bg{
    position:absolute;
    inset:0;
}

.card-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1s;
}

.category-card:hover .card-bg img{
    transform:scale(1.08);
}

.card-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.7),
        rgba(0,0,0,.15)
    );
}

.card-content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:30px;
}

.card-subtitle{
    letter-spacing:4px;
    font-size:12px;
    margin-bottom:20px;
    color:#f3d9a3;
}

.card-content h2{
    font-family:'Cormorant Garamond',serif;
    font-size:90px;
    line-height:.9;
    margin-bottom:20px;
    color:#fff;
}

.price{
    font-size:45px;
    font-weight:700;
    margin-bottom:30px;
    color:#f3d9a3;
}

.enter-btn{
    border:1px solid rgba(255,255,255,.5);
    padding:14px 40px;
    border-radius:50px;
    transition:.4s;
    backdrop-filter:blur(10px);
}

.category-card:hover .enter-btn{
    background:#fff;
    color:#000;
}

.agencies{
    width:100%;
    max-width:1400px;
    margin:80px auto;
    padding:20px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.agency-card{
    background:#fff;
    border-radius:14px;
    padding:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:140px;
    transition:.4s;
}

.agency-card:hover{
    transform:translateY(-8px);
}

.agency-card img{
    max-width:100%;
    max-height:90px;
    object-fit:contain;
}

@media(max-width:992px){

    .hero h1{
        font-size:48px;
    }

    .categories{
        grid-template-columns:1fr;
    }

    .card-content h2{
        font-size:70px;
    }

    .agencies{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:600px){

    .topbar{
        padding:25px;
    }

    .logo{
        font-size:42px;
    }

    .hero h1{
        font-size:34px;
    }

    .mini-slider img{
        width:80px;
        height:110px;
    }

    .category-card{
        height:380px;
    }

    .card-content h2{
        font-size:55px;
    }

    .price{
        font-size:32px;
    }

    .agencies{
        grid-template-columns:1fr;
    }

}

.directory-header{
    position:sticky;
    top:0;
    z-index:100;
    background:rgba(20,0,10,.95);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(255,255,255,.12);
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:14px 35px;
  }
  
  .directory-logo img{
    width:180px;
    height:auto;
    display:block;
  }
  
  .directory-nav{
    display:flex;
    gap:25px;
  }
  
  .directory-nav a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:14px;
  }
  
  .directory-nav a.active,
  .directory-nav a:hover{
    color:#f3d9a3;
  }
  
  .directory-actions{
    display:flex;
    gap:12px;
  }
  
  .btn-outline,
  .btn-gold{
    text-decoration:none;
    padding:10px 18px;
    border-radius:8px;
    font-weight:600;
    font-size:14px;
  }
  
  .btn-outline{
    border:1px solid #f3d9a3;
    color:#f3d9a3;
  }
  
  .btn-gold{
    background:#f3d9a3;
    color:#1a000b;
  }
  
  .directory-hero{
    position:relative;
    min-height:360px;
    display:flex;
    align-items:center;
    justify-content:center;
    background-size:cover;
    background-position:center;
    text-align:center;
  }
  
  .highclass-bg{
    background-image:url('../assets/high-class.jpg');
  }
  
  .lowcost-bg{
    background-image:url('../assets/low-cost.jpg');
  }
  
  .directory-hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
      to bottom,
      rgba(0,0,0,.45),
      rgba(59,0,25,.95)
    );
  }
  
  .directory-hero-content{
    position:relative;
    z-index:2;
    max-width:850px;
    padding:30px;
  }
  
  .directory-hero-content span{
    color:#f3d9a3;
    text-transform:uppercase;
    letter-spacing:5px;
    font-size:13px;
  }
  
  .directory-hero-content h1{
    font-family:'Cormorant Garamond',serif;
    font-size:86px;
    line-height:.9;
    margin:18px 0;
  }
  
  .directory-hero-content p{
    color:#eee;
    font-size:18px;
    line-height:1.6;
  }
  
  .search-panel{
    max-width:1250px;
    margin:-35px auto 25px;
    position:relative;
    z-index:5;
    background:#0d0d12;
    border:1px solid rgba(255,255,255,.12);
    border-radius:14px;
    padding:14px;
    display:grid;
    grid-template-columns:1.5fr 1fr .7fr auto;
    gap:10px;
    box-shadow:0 20px 50px rgba(0,0,0,.35);
  }
  
  .search-panel input,
  .search-panel select{
    background:#171720;
    color:#fff;
    border:1px solid rgba(255,255,255,.12);
    border-radius:10px;
    padding:14px;
    outline:none;
  }
  
  .search-panel button{
    border:0;
    border-radius:10px;
    padding:14px 28px;
    background:#f3d9a3;
    color:#19000b;
    font-weight:700;
    cursor:pointer;
  }
  
  .filters-bar{
    max-width:1250px;
    margin:0 auto 35px;
    padding:0 15px;
    display:flex;
    gap:12px;
    flex-wrap:wrap;
  }
  
  .filters-bar button{
    background:#14000a;
    color:#fff;
    border:1px solid rgba(255,255,255,.18);
    padding:11px 18px;
    border-radius:10px;
    font-weight:600;
    cursor:pointer;
  }
  
  .filters-bar button:hover{
    background:#f3d9a3;
    color:#19000b;
  }
  
  .directory-grid{
    max-width:1250px;
    margin:0 auto 80px;
    padding:0 15px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
  }
  
  .profile-card{
    position:relative;
    background:#14000a;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 20px 45px rgba(0,0,0,.35);
    transition:.35s;
  }
  
  .profile-card:hover{
    transform:translateY(-8px);
  }
  
  .profile-card img{
    width:100%;
    height:470px;
    object-fit:cover;
    display:block;
  }
  
  .profile-card::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:45%;
    background:linear-gradient(to top, rgba(0,0,0,.9), transparent);
    pointer-events:none;
  }
  
  .profile-info{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    z-index:2;
    padding:22px;
  }
  
  .profile-info h3{
    font-family:'Cormorant Garamond',serif;
    font-size:38px;
    margin-bottom:4px;
  }
  
  .profile-info p{
    color:#ddd;
    font-size:14px;
    margin-bottom:8px;
  }
  
  .profile-info span{
    color:#f3d9a3;
    font-weight:700;
  }
  
  .badge{
    position:absolute;
    top:16px;
    left:16px;
    z-index:3;
    background:#f3d9a3;
    color:#19000b;
    padding:8px 14px;
    border-radius:0 10px 10px 0;
    font-weight:800;
    text-transform:uppercase;
    font-size:13px;
  }
  
  .badge.low{
    background:#fff;
  }
  
  .heart{
    position:absolute;
    top:15px;
    right:15px;
    z-index:3;
    width:42px;
    height:42px;
    border-radius:50%;
    border:0;
    background:rgba(255,255,255,.9);
    color:#8b0034;
    font-size:24px;
    cursor:pointer;
  }
  
  .play{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:3;
    width:72px;
    height:72px;
    border-radius:50%;
    background:rgba(255,255,255,.72);
    color:#22000d;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    padding-left:5px;
  }
  
  @media(max-width:992px){
    .directory-header{
      flex-direction:column;
      gap:15px;
    }
  
    .search-panel{
      grid-template-columns:1fr 1fr;
      margin:20px 15px;
    }
  
    .directory-grid{
      grid-template-columns:repeat(2,1fr);
    }
  
    .directory-hero-content h1{
      font-size:62px;
    }
  }
  
  @media(max-width:600px){
    .directory-logo img{
      width:145px;
    }
  
    .directory-nav{
      gap:14px;
      flex-wrap:wrap;
      justify-content:center;
    }
  
    .directory-actions{
      width:100%;
      justify-content:center;
    }
  
    .search-panel{
      grid-template-columns:1fr;
    }
  
    .directory-grid{
      grid-template-columns:1fr;
    }
  
    .profile-card img{
      height:430px;
    }
  
    .directory-hero{
      min-height:300px;
    }
  
    .directory-hero-content h1{
      font-size:48px;
    }
  }

  .hero-premium{
    position:relative;
    min-height:92vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
    padding:120px 20px 80px;
}

.hero-bg{
    position:absolute;
    inset:0;
    z-index:1;
}

.hero-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    transform:scale(1.05);
    animation:heroZoom 14s ease-in-out infinite alternate;
}

.hero-overlay{
    position:absolute;
    inset:0;
    z-index:2;
    background:
        linear-gradient(to bottom, rgba(25,0,12,.65), rgba(25,0,12,.95)),
        radial-gradient(circle at center, rgba(243,217,163,.16), transparent 45%);
}

.hero-content{
    position:relative;
    z-index:3;
    max-width:950px;
    color:#fff;
}

.hero-label{
    display:inline-block;
    letter-spacing:6px;
    text-transform:uppercase;
    color:#f3d9a3;
    font-size:13px;
    margin-bottom:22px;
}

.hero-content h1{
    font-family:'Cormorant Garamond',serif;
    font-size:82px;
    line-height:.95;
    margin-bottom:24px;
}

.hero-content p{
    max-width:760px;
    margin:0 auto 36px;
    font-size:18px;
    line-height:1.8;
    color:#eee;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:16px;
    flex-wrap:wrap;
}

.btn-main,
.btn-secondary{
    display:inline-block;
    text-decoration:none;
    padding:15px 34px;
    border-radius:50px;
    font-weight:700;
    letter-spacing:.5px;
    transition:.35s;
}

.btn-main{
    background:#f3d9a3;
    color:#1a000b;
}

.btn-secondary{
    border:1px solid rgba(255,255,255,.55);
    color:#fff;
    backdrop-filter:blur(10px);
}

.btn-main:hover{
    transform:translateY(-4px);
    box-shadow:0 14px 35px rgba(243,217,163,.28);
}

.btn-secondary:hover{
    background:#fff;
    color:#1a000b;
}

@keyframes heroZoom{
    from{transform:scale(1.05);}
    to{transform:scale(1.15);}
}

@media(max-width:768px){
    .hero-premium{
        min-height:86vh;
        padding:110px 18px 60px;
    }

    .hero-content h1{
        font-size:48px;
    }

    .hero-content p{
        font-size:16px;
    }
}

.latest-girls{
  position:relative;
  padding:100px 20px;
  background:
      radial-gradient(circle at top left, rgba(243,217,163,.13), transparent 35%),
      linear-gradient(180deg, #19000c 0%, #08080b 100%);
}

.section-heading{
  text-align:center;
  max-width:780px;
  margin:0 auto 55px;
}

.section-heading span{
  display:inline-block;
  color:#f3d9a3;
  text-transform:uppercase;
  letter-spacing:5px;
  font-size:12px;
  margin-bottom:14px;
}

.section-heading h2{
  font-family:'Cormorant Garamond',serif;
  font-size:58px;
  line-height:1;
  margin-bottom:18px;
  color:#fff;
}

.section-heading p{
  color:#d8d8d8;
  font-size:17px;
  line-height:1.7;
}

.girls-premium-grid{
  max-width:1320px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.sugar-card{
  position:relative;
  overflow:hidden;
  border-radius:24px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 24px 60px rgba(0,0,0,.35);
  transition:.4s ease;
}

.sugar-card:hover{
  transform:translateY(-10px);
  box-shadow:0 30px 80px rgba(243,217,163,.14);
}

.sugar-img{
  position:relative;
  height:440px;
  overflow:hidden;
}

.sugar-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:.8s ease;
}

.sugar-card:hover .sugar-img img{
  transform:scale(1.08);
}

.sugar-img::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.88), transparent 58%);
}

.badge{
  position:absolute;
  top:18px;
  left:18px;
  z-index:2;
  padding:8px 14px;
  border-radius:999px;
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:1px;
  color:#19000c;
  background:#f3d9a3;
}

.badge.low{
  background:#fff;
}

.badge.new{
  background:#ffd0e5;
}

.sugar-info{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:2;
  padding:28px;
  color:#fff;
}

.sugar-info h3{
  font-family:'Cormorant Garamond',serif;
  font-size:42px;
  margin-bottom:6px;
}

.sugar-info p{
  color:#e6e6e6;
  margin-bottom:18px;
}

.sugar-info a{
  display:inline-block;
  text-decoration:none;
  color:#f3d9a3;
  border:1px solid rgba(243,217,163,.65);
  padding:10px 24px;
  border-radius:50px;
  font-weight:700;
  transition:.35s;
}

.sugar-info a:hover{
  background:#f3d9a3;
  color:#19000c;
}

@media(max-width:992px){
  .girls-premium-grid{
      grid-template-columns:repeat(2,1fr);
  }

  .section-heading h2{
      font-size:46px;
  }
}

@media(max-width:600px){
  .latest-girls{
      padding:75px 16px;
  }

  .girls-premium-grid{
      grid-template-columns:1fr;
  }

  .sugar-img{
      height:410px;
  }

  .section-heading h2{
      font-size:38px;
  }
}

.premium-header{
  position:absolute;
  margin-top: 18px;
  left:50%;
  transform:translateX(-50%);
  width:calc(100% - 40px);
  max-width:1380px;
  z-index:999;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:12px 20px;
  border-radius:999px;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(255,255,255,.45);
  box-shadow:0 18px 55px rgba(0,0,0,.22);
  backdrop-filter:blur(18px);
}

.brand img{
  height:54px;
  width:auto;
  display:block;
}

.premium-nav{
  display:flex;
  align-items:center;
  gap:28px;
}

.premium-nav a{
  text-decoration:none;
  color:#1a000b;
  font-weight:700;
  font-size:14px;
  letter-spacing:.4px;
  transition:.25s;
}

.premium-nav a:hover{
  color:#7b002c;
}

.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.btn-create,
.btn-login{
  text-decoration:none;
  border-radius:999px;
  padding:11px 20px;
  font-weight:800;
  font-size:13px;
  transition:.3s;
  white-space:nowrap;
}

.btn-create{
  background:#7b002c;
  color:#fff;
  box-shadow:0 10px 25px rgba(123,0,44,.25);
}

.btn-login{
  color:#1a000b;
  border:1px solid rgba(26,0,11,.18);
  background:rgba(255,255,255,.6);
}

.btn-create:hover{
  transform:translateY(-3px);
  background:#1a000b;
}

.btn-login:hover{
  background:#f3d9a3;
}

@media(max-width:900px){
  .premium-header{
      top:10px;
      width:calc(100% - 20px);
      border-radius:24px;
      flex-wrap:wrap;
      justify-content:center;
      padding:12px;
  }

  .brand img{
      height:46px;
  }

  .premium-nav{
      order:3;
      width:100%;
      justify-content:center;
      gap:16px;
      flex-wrap:wrap;
  }

  .header-actions{
      gap:8px;
  }

  .btn-create,
  .btn-login{
      padding:9px 14px;
      font-size:12px;
  }
}

.how-it-works{
  position:relative;
  overflow:hidden;
  padding:110px 20px;
  background:
      linear-gradient(180deg, #08080b 0%, #19000c 55%, #08080b 100%);
}

.how-bg-glow{
  position:absolute;
  width:520px;
  height:520px;
  border-radius:50%;
  background:rgba(243,217,163,.12);
  filter:blur(90px);
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  pointer-events:none;
}

.steps-grid{
  position:relative;
  z-index:2;
  max-width:1240px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}

.step-card{
  position:relative;
  min-height:330px;
  padding:38px 32px;
  border-radius:28px;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.13);
  box-shadow:0 25px 70px rgba(0,0,0,.28);
  backdrop-filter:blur(18px);
  overflow:hidden;
  transition:.4s ease;
}

.step-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(243,217,163,.15), transparent 45%);
  opacity:0;
  transition:.4s ease;
}

.step-card:hover{
  transform:translateY(-10px);
  border-color:rgba(243,217,163,.45);
  box-shadow:0 35px 90px rgba(243,217,163,.12);
}

.step-card:hover::before{
  opacity:1;
}

.featured-step{
  background:
      linear-gradient(145deg, rgba(243,217,163,.18), rgba(255,255,255,.055));
  border-color:rgba(243,217,163,.32);
}

.step-number{
  position:absolute;
  top:22px;
  right:28px;
  font-family:'Cormorant Garamond',serif;
  font-size:52px;
  line-height:1;
  color:rgba(255,255,255,.08);
  font-weight:700;
}

.step-icon{
  width:62px;
  height:62px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#f3d9a3;
  color:#19000c;
  font-size:26px;
  margin-bottom:28px;
  box-shadow:0 14px 34px rgba(243,217,163,.24);
}

.step-card h3{
  position:relative;
  z-index:2;
  font-family:'Cormorant Garamond',serif;
  color:#fff;
  font-size:34px;
  margin-bottom:16px;
}

.step-card p{
  position:relative;
  z-index:2;
  color:#ddd;
  font-size:16px;
  line-height:1.8;
}

@media(max-width:992px){
  .steps-grid{
      grid-template-columns:1fr;
      max-width:680px;
  }

  .step-card{
      min-height:auto;
  }
}

@media(max-width:600px){
  .how-it-works{
      padding:80px 16px;
  }

  .step-card{
      padding:32px 24px;
      border-radius:22px;
  }

  .step-card h3{
      font-size:30px;
  }

  .step-number{
      font-size:44px;
  }
}

.testimonials-section{
  position:relative;
  padding:110px 20px;
  background:
      radial-gradient(circle at top right, rgba(243,217,163,.12), transparent 36%),
      linear-gradient(180deg, #08080b 0%, #120009 100%);
  overflow:hidden;
}

.testimonials-grid{
  max-width:1240px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}

.testimonial-card{
  position:relative;
  min-height:330px;
  padding:38px 32px;
  border-radius:30px;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.13);
  box-shadow:0 28px 70px rgba(0,0,0,.32);
  backdrop-filter:blur(18px);
  overflow:hidden;
  transition:.4s ease;
}

.testimonial-card:hover{
  transform:translateY(-10px);
  border-color:rgba(243,217,163,.42);
  box-shadow:0 35px 90px rgba(243,217,163,.12);
}

.featured-testimonial{
  background:
      linear-gradient(145deg, rgba(243,217,163,.18), rgba(255,255,255,.055));
  border-color:rgba(243,217,163,.34);
}

.quote-mark{
  position:absolute;
  top:10px;
  right:28px;
  font-family:'Cormorant Garamond',serif;
  font-size:120px;
  line-height:1;
  color:rgba(243,217,163,.13);
}

.testimonial-card p{
  position:relative;
  z-index:2;
  color:#f1f1f1;
  font-size:18px;
  line-height:1.8;
  margin-bottom:34px;
}

.testimonial-user{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:auto;
}

.testimonial-user span{
  width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#f3d9a3;
  color:#19000c;
  font-weight:900;
  font-size:18px;
}

.testimonial-user h4{
  color:#fff;
  margin:0;
  font-size:17px;
}

.testimonial-user small{
  color:#cfcfcf;
  font-size:13px;
}

@media(max-width:992px){
  .testimonials-grid{
      grid-template-columns:1fr;
      max-width:680px;
  }
}

@media(max-width:600px){
  .testimonials-section{
      padding:80px 16px;
  }

  .testimonial-card{
      padding:32px 24px;
      border-radius:24px;
      min-height:auto;
  }

  .testimonial-card p{
      font-size:16px;
  }
}

.premium-footer{
  position:relative;
  overflow:hidden;
  padding:85px 20px 28px;
  background:
      linear-gradient(180deg, #120009 0%, #050506 100%);
  border-top:1px solid rgba(255,255,255,.10);
}

.footer-glow{
  position:absolute;
  width:520px;
  height:520px;
  border-radius:50%;
  background:rgba(243,217,163,.10);
  filter:blur(100px);
  bottom:-260px;
  left:50%;
  transform:translateX(-50%);
  pointer-events:none;
}

.footer-top{
  position:relative;
  z-index:2;
  max-width:1240px;
  margin:0 auto 55px;
  display:grid;
  grid-template-columns:1.4fr repeat(3,1fr);
  gap:40px;
}

.footer-brand img{
  max-width:190px;
  margin-bottom:22px;
  background:#fff;
  border-radius:18px;
  padding:10px;
}

.footer-brand p{
  color:#d6d6d6;
  line-height:1.8;
  max-width:360px;
}

.footer-column h4{
  color:#f3d9a3;
  font-size:15px;
  text-transform:uppercase;
  letter-spacing:2px;
  margin-bottom:20px;
}

.footer-column a{
  display:block;
  color:#e7e7e7;
  text-decoration:none;
  margin-bottom:13px;
  font-size:15px;
  transition:.3s;
}

.footer-column a:hover{
  color:#f3d9a3;
  transform:translateX(4px);
}

.footer-bottom{
  position:relative;
  z-index:2;
  max-width:1240px;
  margin:0 auto;
  padding-top:26px;
  border-top:1px solid rgba(255,255,255,.10);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.footer-bottom p{
  color:#aaa;
  font-size:14px;
}

.footer-bottom a{
  color:#aaa;
  text-decoration:none;
  margin-left:18px;
  font-size:14px;
  transition:.3s;
}

.footer-bottom a:hover{
  color:#f3d9a3;
}

@media(max-width:900px){
  .footer-top{
      grid-template-columns:1fr 1fr;
  }
}

@media(max-width:600px){
  .premium-footer{
      padding:70px 16px 26px;
  }

  .footer-top{
      grid-template-columns:1fr;
      gap:30px;
  }

  .footer-bottom{
      align-items:flex-start;
      flex-direction:column;
  }

  .footer-bottom a{
      margin-left:0;
      margin-right:14px;
  }
}

.publish-hero{
  position:relative;
  min-height:68vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:140px 20px 80px;
  background:url('/assets/hero-home.jpg') center/cover no-repeat;
  overflow:hidden;
}

.publish-overlay{
  position:absolute;
  inset:0;
  background:
      linear-gradient(to bottom, rgba(25,0,12,.72), rgba(8,8,11,.98)),
      radial-gradient(circle at center, rgba(243,217,163,.18), transparent 42%);
}

.publish-content{
  position:relative;
  z-index:2;
  max-width:850px;
  color:#fff;
}

.publish-content span,
.mini-label{
  display:inline-block;
  color:#f3d9a3;
  text-transform:uppercase;
  letter-spacing:5px;
  font-size:12px;
  margin-bottom:16px;
}

.publish-content h1{
  font-family:'Cormorant Garamond',serif;
  font-size:72px;
  line-height:1;
  margin-bottom:22px;
}

.publish-content p{
  color:#eee;
  font-size:18px;
  line-height:1.8;
}

.publish-section{
  padding:100px 20px;
  background:linear-gradient(180deg,#08080b,#19000c);
}

.publish-grid{
  max-width:1240px;
  margin:0 auto;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:42px;
  align-items:start;
}

.publish-info{
  color:#fff;
  padding:40px;
  border-radius:30px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(16px);
}

.publish-info h2{
  font-family:'Cormorant Garamond',serif;
  font-size:54px;
  line-height:1;
  margin-bottom:20px;
}

.publish-info p{
  color:#ddd;
  line-height:1.8;
  margin-bottom:34px;
}

.publish-benefits{
  display:grid;
  gap:16px;
}

.publish-benefits div{
  padding:18px;
  border-radius:18px;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.10);
}

.publish-benefits strong{
  display:block;
  color:#f3d9a3;
  margin-bottom:6px;
}

.publish-benefits small{
  color:#ccc;
}

.publish-form{
  padding:38px;
  border-radius:30px;
  background:rgba(255,255,255,.92);
  box-shadow:0 35px 90px rgba(0,0,0,.38);
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.publish-form label{
  display:block;
  font-weight:800;
  color:#19000c;
  margin-bottom:8px;
  font-size:14px;
}

.publish-form input,
.publish-form select,
.publish-form textarea{
  width:100%;
  border:1px solid rgba(25,0,12,.14);
  border-radius:16px;
  padding:15px 16px;
  margin-bottom:20px;
  font-family:inherit;
  outline:none;
  background:#fff;
}

.publish-form textarea{
  min-height:130px;
  resize:none;
}

.upload-box{
  border:2px dashed rgba(123,0,44,.25);
  border-radius:22px;
  padding:34px;
  text-align:center;
  margin-bottom:24px;
  background:#fff7fb;
}

.upload-box span{
  font-size:38px;
  color:#7b002c;
}

.upload-box p{
  margin:8px 0 4px;
  font-weight:800;
  color:#19000c;
}

.upload-box small{
  color:#777;
}

.submit-profile{
  width:100%;
  border:0;
  border-radius:999px;
  padding:16px;
  background:#7b002c;
  color:#fff;
  font-weight:900;
  cursor:pointer;
  transition:.3s;
}

.submit-profile:hover{
  background:#19000c;
  transform:translateY(-3px);
}

.form-note{
  text-align:center;
  color:#777;
  font-size:13px;
  margin-top:18px;
}

.plans-preview{
  padding:100px 20px;
  background:
      radial-gradient(circle at top left, rgba(243,217,163,.12), transparent 38%),
      #08080b;
}

.plans-grid{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}

.plan-card{
  position:relative;
  padding:38px 30px;
  border-radius:28px;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.13);
  color:#fff;
  text-align:center;
  transition:.35s;
}

.plan-card:hover{
  transform:translateY(-10px);
  border-color:rgba(243,217,163,.45);
}

.featured-plan{
  background:linear-gradient(145deg,rgba(243,217,163,.18),rgba(255,255,255,.055));
}

.plan-badge{
  position:absolute;
  top:-14px;
  left:50%;
  transform:translateX(-50%);
  background:#f3d9a3;
  color:#19000c;
  border-radius:999px;
  padding:8px 18px;
  font-size:12px;
  font-weight:900;
}

.plan-card h3{
  font-family:'Cormorant Garamond',serif;
  font-size:42px;
  margin-bottom:12px;
}

.price{
  font-size:38px;
  color:#f3d9a3;
  font-weight:900;
  margin-bottom:24px;
}

.price small{
  font-size:14px;
  color:#ccc;
}

.plan-card ul{
  list-style:none;
  padding:0;
  margin:0 0 28px;
}

.plan-card li{
  color:#ddd;
  margin-bottom:12px;
}

.plan-card a{
  display:inline-block;
  text-decoration:none;
  border-radius:999px;
  padding:13px 28px;
  background:#f3d9a3;
  color:#19000c;
  font-weight:900;
}

@media(max-width:900px){
  .publish-grid,
  .plans-grid{
      grid-template-columns:1fr;
  }

  .publish-content h1{
      font-size:48px;
  }

  .publish-info h2{
      font-size:42px;
  }
}

@media(max-width:600px){
  .form-row{
      grid-template-columns:1fr;
      gap:0;
  }

  .publish-form,
  .publish-info{
      padding:26px;
      border-radius:24px;
  }
}

.access-page{
  position:relative;
  min-height:100vh;
  padding:150px 20px 100px;
  overflow:hidden;
  background:#08080b;
}

.access-bg{
  position:absolute;
  inset:0;
  background:url('/assets/hero-home.jpg') center/cover no-repeat;
  transform:scale(1.08);
}

.access-overlay{
  position:absolute;
  inset:0;
  background:
      linear-gradient(90deg, rgba(8,8,11,.96), rgba(25,0,12,.78)),
      radial-gradient(circle at 70% 40%, rgba(243,217,163,.18), transparent 35%);
}

.access-wrapper{
  position:relative;
  z-index:2;
  max-width:1220px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 460px;
  gap:48px;
  align-items:center;
}

.access-info{
  color:#fff;
}

.access-info span{
  display:inline-block;
  color:#f3d9a3;
  text-transform:uppercase;
  letter-spacing:5px;
  font-size:12px;
  margin-bottom:18px;
}

.access-info h1{
  font-family:'Cormorant Garamond',serif;
  font-size:78px;
  line-height:.95;
  margin-bottom:24px;
}

.access-info p{
  max-width:640px;
  color:#e7e7e7;
  font-size:18px;
  line-height:1.8;
  margin-bottom:34px;
}

.access-points{
  display:grid;
  gap:15px;
  max-width:520px;
}

.access-points div{
  padding:18px 20px;
  border-radius:18px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(12px);
}

.access-points strong{
  display:block;
  color:#f3d9a3;
  margin-bottom:6px;
}

.access-points small{
  color:#d0d0d0;
}

.access-card{
  padding:34px;
  border-radius:32px;
  background:rgba(255,255,255,.92);
  box-shadow:0 35px 90px rgba(0,0,0,.42);
  border:1px solid rgba(255,255,255,.55);
}

.access-card-header{
  text-align:center;
  margin-bottom:28px;
}

.access-card-header img{
  width:150px;
  background:#fff;
  border-radius:18px;
  padding:10px;
  margin-bottom:14px;
}

.access-card-header h2{
  font-family:'Cormorant Garamond',serif;
  font-size:42px;
  color:#19000c;
  margin-bottom:8px;
}

.access-card-header p{
  color:#666;
  font-size:15px;
}

.access-form label{
  display:block;
  color:#19000c;
  font-weight:800;
  margin-bottom:8px;
  font-size:14px;
}

.access-form input[type="email"],
.access-form input[type="password"]{
  width:100%;
  border:1px solid rgba(25,0,12,.14);
  border-radius:16px;
  padding:15px 16px;
  margin-bottom:18px;
  outline:none;
  background:#fff;
}

.access-options{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom:24px;
  font-size:13px;
}

.remember{
  display:flex!important;
  align-items:center;
  gap:8px;
  margin:0!important;
  color:#444!important;
  font-weight:600!important;
}

.access-options a{
  color:#7b002c;
  text-decoration:none;
  font-weight:800;
}

.access-form button{
  width:100%;
  border:0;
  border-radius:999px;
  padding:16px;
  background:#7b002c;
  color:#fff;
  font-weight:900;
  cursor:pointer;
  transition:.3s;
}

.access-form button:hover{
  background:#19000c;
  transform:translateY(-3px);
}

.divider{
  position:relative;
  text-align:center;
  margin:24px 0;
}

.divider::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:50%;
  height:1px;
  background:rgba(25,0,12,.12);
}

.divider span{
  position:relative;
  background:rgba(255,255,255,.92);
  padding:0 14px;
  color:#777;
  font-size:13px;
}

.create-account-link{
  display:block;
  text-align:center;
  text-decoration:none;
  border-radius:999px;
  padding:14px;
  color:#19000c;
  border:1px solid rgba(25,0,12,.18);
  font-weight:900;
  transition:.3s;
}

.create-account-link:hover{
  background:#f3d9a3;
}

.access-note{
  text-align:center;
  color:#777;
  font-size:12px;
  line-height:1.6;
  margin-top:20px;
}

@media(max-width:950px){
  .access-wrapper{
      grid-template-columns:1fr;
      max-width:720px;
  }

  .access-info{
      text-align:center;
  }

  .access-info h1{
      font-size:54px;
  }

  .access-info p,
  .access-points{
      margin-left:auto;
      margin-right:auto;
  }
}

@media(max-width:600px){
  .access-page{
      padding:135px 16px 70px;
  }

  .access-info h1{
      font-size:42px;
  }

  .access-card{
      padding:26px;
      border-radius:24px;
  }

  .access-options{
      flex-direction:column;
      align-items:flex-start;
  }
}