* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #050505;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* IMAGES */

img {
  max-width: 100%;
  display: block;
}

/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 2rem 1.5rem 4rem;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 120%;

  object-fit: cover;

  transform: scale(1.08);

  will-change: transform;

  transition: transform .1s linear;

  z-index: 0;
}

.overlay {
  position: absolute;
  inset: 0;

  z-index: 1;

  background:

    linear-gradient(
      to bottom,
      rgba(0,0,0,.35),
      rgba(0,0,0,.55),
      rgba(0,0,0,.95)
    ),

    linear-gradient(
      135deg,
      rgba(214,176,122,.35),
      rgba(0,0,0,0) 45%
    ),

    radial-gradient(
      circle at top,
      rgba(255,220,170,.22),
      transparent 45%
    );

  backdrop-filter: blur(.5px);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;

  animation: fadeUp 1.2s ease;
}

.eyebrow {
  color: #d6b07a;
  letter-spacing: 3px;
  font-size: .8rem;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;

  font-size: clamp(4.5rem, 14vw, 8rem);

  line-height: .88;

  margin-bottom: 1.25rem;

  letter-spacing: -2px;

  font-weight: 600;
}

.hero h1 span {
  color: #d6b07a;
  font-style: italic;
}

.hero-text {
  color: rgba(255,255,255,.75);

  line-height: 1.8;

  font-size: 1rem;

  max-width: 500px;

  margin-bottom: 2rem;
}

.hero-button {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 1rem 1.6rem;

  border-radius: 999px;

  background: rgba(214,176,122,.95);

  color: #000;

  text-decoration: none;

  font-weight: 700;

  transition: .35s ease;

  backdrop-filter: blur(10px);
}

.hero-button:hover {
  transform: translateY(-3px);
  background: #fff;
}

/* FEATURES */

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 2rem 1.25rem;
}

.feature-item {
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  border-radius: 24px;
  padding: 1.25rem;
}

.feature-item h3 {
  color: #d6b07a;
  margin-bottom: .5rem;
}

.feature-item p {
  color: #c5c5c5;
  font-size: .92rem;
  line-height: 1.5;
}

/* COLLECTIONS */

.collections {
  padding: 3rem 1rem 8rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title p {
  color: #d6b07a;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-size: .85rem;
}

.section-title h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  line-height: 1;
}

/* COLLECTION CARD */

.collection-card {
  position: relative;

  border: 1px solid rgba(255,255,255,.08);

  border-radius: 32px;

  overflow: hidden;

  margin-bottom: 2rem;

  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,.05),
      rgba(255,255,255,.02)
    );

  backdrop-filter: blur(18px);

  transition:
    transform .45s ease,
    border-color .45s ease,
    box-shadow .45s ease;

  box-shadow:
    0 10px 40px rgba(0,0,0,.25);
}

.collection-card:hover {

  transform: translateY(-8px);

  border-color: rgba(214,176,122,.35);

  box-shadow:
    0 20px 60px rgba(0,0,0,.45),
    0 0 30px rgba(214,176,122,.08);
}

.featured {

  border-color: rgba(214,176,122,.45);

  box-shadow:
    0 10px 50px rgba(214,176,122,.12);
}

/* ACCORDION */

.accordion {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
  cursor: pointer;
}

.accordion-left {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: center;
}

.accordion-left img {
  width: 100%;
  height: 320px;

  object-fit: cover;

  object-position: center 20%;

  transform: scale(1);

  transition:
    transform 1.2s ease;

  will-change: transform;
}

.collection-card:hover .accordion-left img {

  transform: scale(1.05);
}

.accordion-left h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  margin-top: 1rem;
}

.accordion-left p {
  color: #d0d0d0;
  font-size: .95rem;
  margin-top: .25rem;
}

.accordion-right {
  text-align: center;
  padding-bottom: 1.5rem;
}

.accordion-right span {
  display: block;
  color: #d6b07a;
  margin-bottom: .5rem;
}

.plus {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 1.2rem;
}

/* PANEL */

.panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s ease;
}

.panel-grid {
  display: grid;
  gap: 1.5rem;
  padding: 0 1rem 1.5rem;
}

.panel-info,
.video-addon {

  border: 1px solid rgba(255,255,255,.06);

  border-radius: 28px;

  padding: 1.5rem;

  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,.04),
      rgba(255,255,255,.02)
    );

  backdrop-filter: blur(12px);
}

.panel-info h4,
.video-addon h4 {
  color: #d6b07a;
  margin-bottom: 1rem;
}

.panel-info ul {
  list-style: none;
}

.panel-info li {
  color: #d0d0d0;
  margin-bottom: .85rem;
  line-height: 1.5;
}

.note {
  margin-top: 1rem;
  color: #a8a8a8;
  font-size: .9rem;
}

.video-price {
  color: #ffffff;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
}

.video-item {

  border: 1px solid rgba(255,255,255,.08);

  border-radius: 20px;

  padding: 1rem;

  text-align: center;

  background: rgba(255,255,255,.03);

  backdrop-filter: blur(10px);

  transition:
    transform .35s ease,
    border-color .35s ease;
}

.video-item:hover {

  transform: translateY(-4px);

  border-color: rgba(214,176,122,.35);
}

.video-item span {
  display: block;
  font-size: 1.5rem;
  margin-bottom: .5rem;
}

.video-item p {
  font-size: .92rem;
  color: #d8d8d8;
}

/* BADGE */

.badge {
  display: inline-block;
  background: #d6b07a;
  color: #000;
  padding: .35rem .8rem;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 700;
  margin-top: 1rem;
}

/* WHATSAPP */

.whatsapp-sticky {

  position: fixed;

  left: 50%;

  transform: translateX(-50%);

  bottom: 18px;

  width: calc(100% - 28px);

  max-width: 430px;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: .75rem;

  padding: 1rem 1.25rem;

  border-radius: 999px;

  text-decoration: none;

  color: #fff;

  font-weight: 600;

  letter-spacing: .3px;

  background:
    linear-gradient(
      to right,
      rgba(214,176,122,.88),
      rgba(180,140,90,.88)
    );

  backdrop-filter: blur(18px);

  border:
    1px solid rgba(255,255,255,.12);

  box-shadow:
    0 10px 40px rgba(0,0,0,.35),
    0 0 20px rgba(214,176,122,.18);

  z-index: 999;

  transition:
    transform .35s ease,
    box-shadow .35s ease,
    background .35s ease;
}

.whatsapp-sticky:hover {

  transform:
    translateX(-50%)
    translateY(-4px);

  box-shadow:
    0 18px 50px rgba(0,0,0,.45),
    0 0 30px rgba(214,176,122,.28);

  background:
    linear-gradient(
      to right,
      rgba(224,186,132,.96),
      rgba(194,154,104,.96)
    );
}

/* DESKTOP */

@media(min-width: 900px) {

  .features {
    grid-template-columns: repeat(4,1fr);
  }

  .collections {
    max-width: 1200px;
    margin: auto;
  }

  .panel-grid {
    grid-template-columns: 1fr 1fr;
  }

  .accordion-left img {
    height: 500px;
  }

}
/* HERO ANIMATION */

@keyframes fadeUp {

  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}
/* SCROLL REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.package-cta {

  display: flex;

  align-items: center;

  justify-content: center;

  width: 100%;

  margin-top: 1.5rem;

  padding: 1rem;

  border-radius: 18px;

  text-decoration: none;

  font-weight: 600;

  color: #fff;

  background:
    linear-gradient(
      to right,
      rgba(214,176,122,.95),
      rgba(180,140,90,.95)
    );

  transition:
    transform .35s ease,
    box-shadow .35s ease;

  box-shadow:
    0 10px 30px rgba(214,176,122,.18);
}

.package-cta:hover {

  transform: translateY(-3px);

  box-shadow:
    0 15px 40px rgba(214,176,122,.28);
}

.site-logo {

  position: absolute;

  top: 10px;

  left: 50%;

  transform: translateX(-50%);

  z-index: 1000;
}

.site-logo img {

  width: 140px;

  opacity: .95;

  transition:
    transform .35s ease,
    opacity .35s ease;
}

.site-logo:hover img {

  transform: scale(1.03);

  opacity: 1;
}

/* MOBILE NAV */

.mobile-nav {

  position: absolute;

  top: 28px;
  left: 20px;
  right: 20px;

  z-index: 999;

  display: flex;

  align-items: center;

  justify-content: center;
}

.site-logo img {

  width: 120px;
}


.menu-toggle:hover {

  transform: scale(1.05);

  background: rgba(255,255,255,.12);
}

.mobile-menu {

  position: absolute;

  top: 70px;
  right: 0;

  width: 220px;

  display: flex;
  flex-direction: column;

  padding: 1rem;

  border-radius: 24px;

  background:
    rgba(10,10,10,.82);

  backdrop-filter: blur(24px);

  border:
    1px solid rgba(255,255,255,.08);

  opacity: 0;

  visibility: hidden;

  transform: translateY(-10px);

  transition:
    opacity .35s ease,
    transform .35s ease,
    visibility .35s ease;
}

.mobile-menu.active {

  opacity: 1;

  visibility: visible;

  transform: translateY(0);
}

.mobile-menu a {

  padding: 1rem;

  text-decoration: none;

  color: #fff;

  border-radius: 14px;

  transition:
    background .3s ease,
    transform .3s ease;
}


/* MOBILE NAV */

.mobile-nav {

  position: absolute;

  top: 20px;
  left: 20px;
  right: 20px;

  z-index: 999;

  display: flex;

  align-items: center;

  justify-content: space-between;
}

.site-logo img {

  width: 120px;
}

.menu-toggle {

  position: absolute;

  top: 8px;

  right: 0;

  width: 52px;
  height: 52px;

  border: 1px solid rgba(255,255,255,.1);

  border-radius: 18px;

  background: rgba(255,255,255,.08);

  backdrop-filter: blur(18px);

  color: #fff;

  font-size: 1.3rem;

  cursor: pointer;

  z-index: 1000;

  transition:
    transform .3s ease,
    background .3s ease;
}

.mobile-menu {

  position: absolute;

  top: 70px;
  right: 0;

  width: 220px;

  display: flex;
  flex-direction: column;

  padding: 1rem;

  border-radius: 24px;

  background:
    rgba(10,10,10,.88);

  backdrop-filter: blur(24px);

  border:
    1px solid rgba(255,255,255,.08);

  opacity: 0;

  visibility: hidden;

  transform: translateY(-10px);

  transition:
    opacity .35s ease,
    transform .35s ease,
    visibility .35s ease;
}

.mobile-menu.active {

  opacity: 1;

  visibility: visible;

  transform: translateY(0);
}

.mobile-menu a {

  padding: 1rem;

  text-decoration: none;

  color: #fff;

  border-radius: 14px;

  transition:
    background .3s ease;
}

.mobile-menu a:hover {

  background:
    rgba(255,255,255,.06);
}

/* FAQ */

.faq-section {

  padding: 2rem 1rem 6rem;

  max-width: 1000px;

  margin: auto;
}

.faq-container {

  display: flex;

  flex-direction: column;

  gap: 1rem;
}

.faq-item {

  border:
    1px solid rgba(255,255,255,.08);

  border-radius: 24px;

  overflow: hidden;

  background:
    rgba(255,255,255,.03);

  backdrop-filter: blur(14px);
}

.faq-question {

  width: 100%;

  background: transparent;

  border: none;

  color: #fff;

  padding: 1.4rem;

  display: flex;

  align-items: center;

  justify-content: space-between;

  font-size: 1rem;

  cursor: pointer;
}

.faq-question span {

  color: #d6b07a;

  font-size: 1.2rem;
}

.faq-answer {

  max-height: 0;

  overflow: hidden;

  transition: max-height .4s ease;

  padding: 0 1.4rem;
}

.faq-answer p {

  color: #d0d0d0;

  line-height: 1.7;

  margin-bottom: 1rem;
}

/* ADDONS */

.addons-section {

  padding: 2rem 1rem 6rem;

  max-width: 1200px;

  margin: auto;
}

.addons-grid {

  display: grid;

  gap: 1.5rem;
}

.addon-card {

  border:
    1px solid rgba(255,255,255,.08);

  border-radius: 32px;

  padding: 2rem;

  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,.05),
      rgba(255,255,255,.02)
    );

  backdrop-filter: blur(16px);

  transition:
    transform .4s ease,
    border-color .4s ease,
    box-shadow .4s ease;
}

.addon-card:hover {

  transform: translateY(-6px);

  border-color:
    rgba(214,176,122,.3);

  box-shadow:
    0 15px 40px rgba(0,0,0,.35);
}

.addon-icon {

  font-size: 2rem;

  margin-bottom: 1rem;
}

.addon-card h3 {

  font-family:
    'Cormorant Garamond', serif;

  font-size: 2rem;

  margin-bottom: .8rem;
}

.addon-card p {

  color: #d0d0d0;

  line-height: 1.7;

  margin-bottom: 1.5rem;
}

.addon-card a {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: .9rem 1.4rem;

  border-radius: 999px;

  text-decoration: none;

  color: #fff;

  background:
    rgba(214,176,122,.9);

  transition:
    transform .3s ease,
    background .3s ease;
}

.addon-card a:hover {

  transform: translateY(-3px);

  background:
    rgba(224,186,132,1);
}

@media(min-width: 768px) {

  .addons-grid {

    grid-template-columns: 1fr 1fr;
  }
}

/* FOOTER */

.site-footer {

  padding: 4rem 1.5rem 3rem;

  border-top:
    1px solid rgba(255,255,255,.08);

  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,.02),
      rgba(255,255,255,.01)
    );

  text-align: center;
}

.footer-logo img {

  width: 140px;

  margin: auto auto 2rem;

  opacity: .9;
}

.footer-links,
.footer-social {

  display: flex;

  justify-content: center;

  gap: 1.5rem;

  flex-wrap: wrap;

  margin-bottom: 1.5rem;
}

.footer-links a,
.footer-social a {

  text-decoration: none;

  color: #d0d0d0;

  transition:
    color .3s ease,
    transform .3s ease;
}

.footer-links a:hover,
.footer-social a:hover {

  color: #d6b07a;

  transform: translateY(-2px);
}

.footer-copy {

  color: #8a8a8a;

  font-size: .85rem;

  margin-top: 2rem;
}