:root{
  --gold: #d9a850;
  --gold-soft: rgba(217,168,80,0.95);
  --text: rgba(255,255,255,0.78);
  --bg: #050505;

  --page-max: 1500px;
  --pad-x: clamp(18px, 3vw, 54px);

  --topbar-h: 84px;
}

*{ box-sizing: border-box; }

html, body{
  margin: 0;
  padding: 0;
  height: 100%;
  background: var(--bg);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body{
  background:
    radial-gradient(ellipse at center, rgba(255,255,255,0.08) 0%, rgba(0,0,0,0.0) 35%),
    radial-gradient(ellipse at 50% 20%, rgba(217,168,80,0.08) 0%, rgba(0,0,0,0.0) 45%),
    linear-gradient(180deg, #030303 0%, #050505 40%, #030303 100%);
}

.p-topbar{
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--topbar-h);

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 var(--pad-x);

  background: linear-gradient(180deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.0) 100%);
  backdrop-filter: blur(6px);
}

.p-back{
  display: inline-flex;
  align-items: center;
  gap: 12px;

  text-decoration: none;
  color: rgba(255,255,255,0.78);
  font-family: "Manrope", system-ui, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;

  padding: 10px 8px;
  border-radius: 999px;
}

.p-back:hover{
  color: var(--gold-soft);
}

.p-back::before{
  content: "‹";
  font-size: 22px;
  line-height: 1;
  color: var(--gold-soft);
  transform: translateY(-1px);
}

.menu-btn{
  width: 80px;
  height: 56px;
  border: 0;
  background: transparent;
  cursor: pointer;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 10px;
}

.menu-btn .menu-line{
  display: block;
  height: 3px;
  width: 100%;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(217,168,80,0.22);
}

.menu-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 180;
}

.side-menu{
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;

  width: min(540px, 88vw);
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(10px);
  border-left: 1px solid rgba(217,168,80,0.25);

  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 290;

  padding: 0;
}

.menu-close{
  position: absolute;
  top: 24px;
  left: 28px;

  width: 64px;
  height: 64px;

  border-radius: 50%;
  border: 1px solid rgba(217,168,80,0.28);
  background: rgba(0,0,0,0.35);
  cursor: pointer;
  box-shadow: 0 0 18px rgba(217,168,80,0.18);
  opacity: 0.9;
}

.menu-close::before,
.menu-close::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 2px;
  background: var(--gold-soft);
  transform-origin: center;
}
.menu-close::before{ transform: translate(-50%, -50%) rotate(45deg); }
.menu-close::after{ transform: translate(-50%, -50%) rotate(-45deg); }

.menu-nav{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
  margin: 0;
  padding: 0;
}

.menu-link{
  position: relative;
  display: block;
  width: 100%;
  text-decoration: none;
  color: #ffe9b7;

  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: clamp(18px, 3vw, 34px);

  padding: 20px 56px 28px;
  text-align: center;
}

.menu-link::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  width: 52%;
  height: 4px;
  border-radius: 999px;
  background: radial-gradient(
    ellipse at center,
    rgba(217,168,80,0.95) 0%,
    rgba(217,168,80,0.9) 35%,
    rgba(217,168,80,0.25) 70%,
    rgba(217,168,80,0) 100%
  );
  opacity: 0.9;
}

.menu-link:hover{ color: var(--gold-soft); }
.menu-link:hover::after{ width: 70%; opacity: 1; }

body.menu-open .side-menu{ transform: translateX(0); }
body.menu-open .menu-overlay{ opacity: 1; pointer-events: auto; }
body.menu-open .menu-btn{ opacity: 0; pointer-events: none; }

.p-main{
  width: 100%;
}

.p-section{
  width: 100%;
  padding: clamp(28px, 4vw, 64px) 0;
}

.p-container{
  width: min(var(--page-max), 100%);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.p-grid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 4vw, 70px);
  align-items: center;
}

@media (max-width: 980px){
  .p-grid{
    grid-template-columns: 1fr;
  }
}

.p-hero-media{
  position: relative;
  width: 100%;
}

.p-slider{
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;

  background: rgba(0,0,0,0.32);
  box-shadow: 0 40px 90px rgba(0,0,0,0.65);
}

.p-slides{
  height: 100%;
  display: flex;
  transform: translate3d(0,0,0);
  transition: transform 450ms cubic-bezier(.2,.8,.2,1);
}

.p-slide{
  min-width: 100%;
  height: 100%;
  position: relative;
}

.p-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-slider-controls{
  display: flex;
  justify-content: flex-end;
  gap: 26px;
  margin-top: 22px;
}

.p-arrow{
  width: 54px;
  height: 54px;
  border-radius: 999px;

  border: 1px solid rgba(217,168,80,0.55);
  background: rgba(0,0,0,0.25);
  cursor: pointer;

  box-shadow: 0 0 20px rgba(217,168,80,0.12);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
  color: var(--gold-soft);

  display: grid;
  place-items: center;
  font-size: 28px;
  line-height: 1;
}

.p-arrow:hover{
  transform: translateY(-1px);
  border-color: rgba(217,168,80,0.9);
  box-shadow: 0 0 30px rgba(217,168,80,0.18);
}

.p-info{
  color: var(--text);
  font-family: "Manrope", system-ui, sans-serif;
}

.p-title{
  margin: 0 0 10px;
  color: rgba(217,168,80,0.95);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(22px, 2.3vw, 36px);
}

.p-subtitle{
  margin: 0 0 24px;
  color: rgba(217,168,80,0.8);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 18px;
}

.p-price{
  margin: 0 0 14px;
  color: rgba(217,168,80,0.95);
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: clamp(20px, 2vw, 30px);
}

.p-desc{
  margin: 0 0 18px;
  line-height: 1.55;
  color: rgba(217,168,80,0.75);
  max-width: 52ch;
}

.p-readmore{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-weight: 600;
}
.p-readmore:hover{ color: var(--gold-soft); }

.p-cta{
  margin-top: 24px;
  width: min(520px, 100%);
  padding: 16px 18px;

  border: 1px solid rgba(217,168,80,0.7);
  background: transparent;
  color: rgba(217,168,80,0.95);

  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  cursor: pointer;
}

.p-cta:hover{
  border-color: rgba(217,168,80,0.95);
  box-shadow: 0 0 26px rgba(217,168,80,0.14);
}

.p-notes h3{
  margin: 0 0 18px;
  color: rgba(217,168,80,0.95);
  font-family: "Manrope", system-ui, sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 24px;
}

.p-notes p{
  margin: 0;
  line-height: 2.05;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(217,168,80,0.75);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
}

.p-photo{
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0,0,0,0.65);
}

.p-photo img{
  width: 100%;
  height: auto;
  display: block;
}

.p-story h3{
  margin: 0 0 14px;
  color: rgba(217,168,80,0.95);
  font-family: "Manrope", system-ui, sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 24px;
}

.p-story p{
  margin: 0;
  color: rgba(217,168,80,0.75);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.75;
  font-size: 16px;
  max-width: 56ch;
}

@font-face{
  font-family: "Signatura Onellander";
  src: url("/assets/fonts/SignaturaOnellander.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

.p-script{
  margin-top: 34px;
  font-family: "Signatura Onellander", cursive;
  font-size: clamp(22px, 3vw, 29px);
  color: rgba(217,168,80,0.85);
}

.p-script-line{
  margin-top: 10px;
  width: 140px;
  height: 2px;
  background: rgba(217,168,80,0.55);
}

.p-footer{
  padding: 54px 0 44px;
}

.p-footer-grid{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.p-footer a, .p-footer p{
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: rgba(217,168,80,0.65);
  letter-spacing: 0.08em;
  text-decoration: none;
}

.p-footer .center{
  text-align: center;
}
.p-footer .left{
  text-align: left;
}
.p-footer .right{
  text-align: right;
}

.p-footer-logo{
  display: inline-block;
  margin-bottom: 8px;
}

.p-footer-logo img{
  width: 70px;
  height: auto;
  display: block;
  margin: 0 auto;
  opacity: 0.95;
}

@media (max-width: 820px){
  .p-footer-grid{
    grid-template-columns: 1fr;
    text-align: center;
  }
  .p-footer .left, .p-footer .right{ text-align: center; }
}

@media (max-width: 600px){
  :root{ --topbar-h: 74px; }

  .menu-btn{
    width: 68px;
    height: 48px;
    gap: 12px;
  }

  .p-slider{
    aspect-ratio: 4 / 3;
  }
}
