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

:root{
  --gold:#d9a850;
  --gold-soft: rgba(217,168,80,0.95);
  --hero-width: min(1100px, 92vw);
  --top-pad-y: 0px;
  --top-pad-x: 22px;
  --top-safe: 120px;
}

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

#sky{
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#skyCanvas{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.top-bar{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 65;
  height: 140px;
  padding: 0 var(--top-pad-x);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
}
.top-bar > *{ pointer-events: auto; }

.top-logo{
  grid-column: 2;
  justify-self: center;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.top-logo img{
  width: clamp(120px, 12vw, 190px);
  height: auto;
  display: block;
  filter: drop-shadow(0 0 16px rgba(0,0,0,0.75));
}

.logo-container{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding-top: var(--top-safe);
  box-sizing: border-box;
}

.logo-block{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 16px;
  width: 100%;
  box-sizing: border-box;
}

.tagline{
  font-family: "Signatura Onellander", "Segoe Script", cursive;
  font-weight: 400;
  line-height: 1.06;
  font-size: clamp(22px, 4.2vw, 56px);
  color: #f7e2b8;
  text-shadow: 0 0 12px rgba(0,0,0,0.8);
  width: var(--hero-width);
  max-width: var(--hero-width);
  margin: 0 auto;
  white-space: nowrap;
  overflow: visible;
}

.product-placeholder{
  width: var(--hero-width);
  max-width: var(--hero-width);
  height: auto;

  margin-top: 6px;
  margin-bottom: 8px;

  filter: drop-shadow(0 22px 40px rgba(0,0,0,0.75));
}

.cta-button{
  margin-top: 4px;
  padding: 12px 32px;
  border-radius: 999px;
  border: 1px solid #f0d49a;
  background: linear-gradient(135deg, #f8e1b0 0%, #d9a850 50%, #a9772e 100%);
  color: #1a1206;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 18px rgba(0,0,0,0.75);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease,
    background-position 0.3s ease;
  background-size: 180% 180%;
  background-position: 0% 50%;
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
}

.cta-button:hover{
  transform: translateX(-50%) translateY(-1px);
  box-shadow: 0 0 24px rgba(0,0,0,0.9);
  filter: brightness(1.05);
  background-position: 100% 50%;
}

.cta-button:active{
  transform: translateX(-50%) translateY(0);
  box-shadow: 0 0 14px rgba(0,0,0,0.9);
  filter: brightness(0.96);
}

.menu-btn{
  grid-column: 3;
  justify-self: end;

  position: static;
  width: 80px;
  height: 56px;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 60;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  margin-right: 30px;
}

.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: absolute;
  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: 40;
}

.side-menu{
  position: absolute;
  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: 55;

  padding: 0;
  box-sizing: border-box;
}

.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;
  z-index: 3;

  box-shadow: 0 0 18px rgba(217,168,80,0.18);
  opacity: 0.9;

  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.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-close:hover{
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 0 26px rgba(217,168,80,0.25);
}

.menu-nav{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 26px;

  margin: 0;
  padding: 0;
}

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

  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  font-size: clamp(22px, 3.2vw, 36px);

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

.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);z-index: 999; }
body.menu-open .menu-overlay{ opacity: 1; pointer-events: auto; }
body.menu-open .menu-btn{ opacity: 0; pointer-events: none; }

@media (max-width: 600px){
  :root{
    --hero-width: min(96vw, 720px);
    --top-pad-x: 14px;
    --top-safe: 105px;
  }

  .top-logo img{
    width: clamp(105px, 26vw, 150px);
  }

  .menu-btn{
    width: 68px;
    height: 48px;
    gap: 12px;
	margin-right: 15px;
	padding: 0 10px;
  }

  .tagline{
    white-space: normal;
    font-size: clamp(22px, 6.2vw, 36px);
    line-height: 1.12;
  }

  .cta-button{
    padding: 10px 24px;
    font-size: 11px;
    letter-spacing: 0.12em;
    bottom: 40px;
  }

  .side-menu{
    width: min(92vw, 420px);
  }

  .menu-link{
    font-size: clamp(16px, 5vw, 22px);
    letter-spacing: 0.14em;
    padding: 16px 32px 24px;
  }
}

.sections{
  position: relative;
  z-index: 10;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: y mandatory;
}

.section{
  min-height: 100vh;
  position: relative;
  scroll-snap-align: start;
}

.section-inner{
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding-top: 180px;
  color: rgba(217,168,80,0.95);
  text-align: center;
}

.section-title{
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 54px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.section-text{
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(14px, 1.8vw, 18px);
  opacity: 0.9;
  margin: 0;
}

.section-home{
  position: relative;
}

.home-logo{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding-top: var(--top-pad-y);
}

.home-logo img{
  width: clamp(120px, 12vw, 190px);
  height: auto;
  display: block;

  filter: drop-shadow(0 0 16px rgba(0,0,0,0.75));
}

@media (max-width: 600px){
  .home-logo img{
    width: clamp(105px, 26vw, 150px);
  }
}

.section-collection{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collection-wrap{
  width: min(1400px, 94vw);
  margin: 0 auto;
  padding: 40px 0;
}

.collection-slider{
  position: relative;
  width: 100%;
  --visible-cols: 4;
  --col-w: 320px;
  --gap: clamp(18px, 2.2vw, 28px);
}

@media (max-width: 1024px){
  .collection-slider{
    --visible-cols: 3;
    --col-w: 220px;
  }
}

@media (max-width: 640px){
  .collection-slider{
    --visible-cols: 2;
    --col-w: 170px;
  }
}

.collection-viewport{
  width: calc(
    (var(--visible-cols) * var(--col-w)) +
    ((var(--visible-cols) - 1) * var(--gap))
  );
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  outline: none;
  padding: 0;
  touch-action: pan-y;
  cursor: grab;
  transform: translateZ(0);
  backface-visibility: hidden;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 15px;
}

.collection-viewport.is-dragging{ cursor: grabbing; }

.collection-track{
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, auto);
  gap: var(--gap);
  grid-auto-columns: var(--col-w);
  width: max-content;
  will-change: transform;
  transform: translate3d(0,0,0);
  transition: transform 600ms cubic-bezier(.2,.8,.2,1);
  margin: 0;
  padding: 0;
}

.p-card{
  position: relative;
  box-sizing: border-box;
}

.p-hit{
  width: 100%;
  display: block;
  text-decoration: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  text-align: center;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

.p-hit:focus-visible{
  outline: none;
}

.p-frame{
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(217,168,80,0.55);
  box-shadow: 0 0 0 rgba(217,168,80,0);
  transition: box-shadow 220ms ease, transform 220ms ease, border-color 220ms ease;
  overflow: hidden;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(2px);
  transform: translateZ(0);
}

.p-hit:hover .p-frame,
.p-hit:focus-visible .p-frame{
  border-color: rgba(217,168,80,0.9);
  box-shadow: 0 0 38px rgba(217,168,80,0.22), 0 0 90px rgba(217,168,80,0.10);
  transform: translateY(-2px) translateZ(0);
}

.p-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
}

.p-img-b{
  opacity: 0;
  transition: opacity 220ms ease;
}

.p-hit:hover .p-img-b,
.p-hit:focus-visible .p-img-b{ opacity: 1; }

.p-meta{
  margin-top: 12px;
  font-family: "Manrope", system-ui, sans-serif;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(217,168,80,0.95);
}

.p-name{ font-size: 16px; }
.p-size{ font-size: 14px; opacity: 0.85; margin-top: 4px; }

.collection-dots{
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}

.dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, opacity 160ms ease;
  opacity: 0.9;
}

.dot.is-active{
  background: rgba(217,168,80,0.95);
  transform: scale(1.2);
}

.collection-viewport,
.collection-track,
.p-hit,
.p-hit *{
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}

.p-hit { display: block; }
.p-frame, .p-meta { pointer-events: none; }
.p-hit { pointer-events: auto; }

.p-modal{
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
}

.p-modal.is-open{
  display: block;
}

.p-modal-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
}

.p-modal-panel{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: min(980px, 92vw);
  background: rgba(0,0,0,0.82);
  border: 1px solid rgba(217,168,80,0.25);
  box-shadow: 0 0 90px rgba(0,0,0,0.8);
  border-radius: 18px;

  overflow: hidden;
}

.p-modal-close{
  position: absolute;
  top: 16px;
  left: 16px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(217,168,80,0.28);
  background: rgba(0,0,0,0.35);
  cursor: pointer;
  z-index: 2;
}

.p-modal-close::before,
.p-modal-close::after{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width:26px;
  height:2px;
  background: rgba(217,168,80,0.95);
  transform-origin:center;
}
.p-modal-close::before{ transform: translate(-50%,-50%) rotate(45deg); }
.p-modal-close::after{ transform: translate(-50%,-50%) rotate(-45deg); }

.p-modal-content{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
}

.p-modal-media{
  padding: 26px;
}

.p-modal-media img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(217,168,80,0.22);
  box-shadow: 0 0 50px rgba(0,0,0,0.6);
}

.p-modal-info{
  padding: 28px 26px;
  color: rgba(217,168,80,0.95);
  font-family: "Manrope", system-ui, sans-serif;
}

.p-modal-title{
  margin: 0;
  font-size: clamp(18px, 2.2vw, 28px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.p-modal-sub{
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.14em;
  opacity: 0.85;
  text-transform: uppercase;
}

.p-modal-desc{
  margin-top: 18px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
  letter-spacing: 0.02em;
}

.p-modal-actions{
  margin-top: 22px;
}

.p-modal-cta{
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(217,168,80,0.6);
  background: rgba(0,0,0,0.25);
  color: rgba(217,168,80,0.95);
  cursor: pointer;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
}

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

.section-contact{
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 180px;
  box-sizing: border-box;
}

.contact-wrap{
  width: min(900px, 92vw);
  margin: 0 auto;
  text-align: center;
  color: rgba(217,168,80,0.95);
}

.contact-top-logo{
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
  opacity: 0.95;
}

.contact-top-logo img{
  width: clamp(120px, 12vw, 190px);
  height: auto;
  filter: drop-shadow(0 0 16px rgba(0,0,0,0.75));
}

.contact-title{
  margin: 0 0 46px;
  font-family: "Manrope", system-ui, sans-serif;
  letter-spacing: 0.08em;
  font-weight: 600;
  font-size: clamp(28px, 4vw, 54px);
  color: rgba(217,168,80,0.95);
  text-shadow: 0 0 18px rgba(0,0,0,0.65);
}

.contact-box{
  display: grid;
  gap: 14px;
  justify-items: center;
}

.contact-box-title{
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  color: rgba(217,168,80,0.95);
}

.contact-box-sub{
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(12px, 1.4vw, 14px);
  opacity: 0.8;
  line-height: 1.5;
  margin-bottom: 10px;
}

/* actions */
.contact-action{
  width: min(430px, 92vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  background: transparent;
  border: 0;
  text-decoration: none;

  padding: 14px 12px;
  cursor: pointer;

  font-family: "Manrope", system-ui, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 22px;

  color: rgba(217,168,80,0.95);

  border-top: 1px solid rgba(217,168,80,0.35);
  border-bottom: 1px solid rgba(217,168,80,0.35);
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.contact-action:hover,
.contact-action:focus-visible{
  transform: translateY(-1px);
  border-color: rgba(217,168,80,0.75);
  box-shadow: 0 0 26px rgba(217,168,80,0.10);
  outline: none;
}

.contact-ico{
  width: 26px;
  text-align: left;
  opacity: 0.9;
}

.contact-ext{
  opacity: 0.8;
}

.contact-footer{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  background: rgba(0,0,0,0.92);
  border-top: 1px solid rgba(255,255,255,0.06);
  z-index: 12;
}

.contact-footer-inner{
  width: min(1200px, 94vw);
  margin: 0 auto;
  padding: 22px 0;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;

  color: rgba(217,168,80,0.85);
  font-family: "Manrope", system-ui, sans-serif;
}

.contact-foot-left{ justify-self: start; opacity: 0.75; }
.contact-foot-right{ justify-self: end; opacity: 0.75; }

.contact-foot-center{
  justify-self: center;
  text-align: center;
}

.contact-foot-logo{
  /* width: 88px; */
  height: auto;
  display: block;
  margin: 0 auto 6px;
  filter: drop-shadow(0 0 12px rgba(0,0,0,0.6));
}

.contact-foot-copy{
  font-size: 12px;
  opacity: 0.75;
}

@media (max-width: 720px){
  .section-contact{ padding-bottom: 210px; }

  .contact-footer-inner{
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-foot-left,
  .contact-foot-right{
    justify-self: center;
  }
}

.contact-box-title{
  font-size: clamp(26px, 3vw, 40px);
}

.contact-box-sub{
  font-size: clamp(13px, 1.6vw, 16px);
}

.contact-action{
  display: grid;
  grid-template-columns: 28px 1fr 28px;
  align-items: center;
  justify-items: center;
  width: min(430px, 94vw);
}

.contact-ico{ justify-self: start; }
.contact-ext{ justify-self: end; }

.contact-action span:nth-child(2){
  justify-self: center;
  text-align: center;
  width: 100%;
}

.c-modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.c-modal.is-open{ display: block; overflow-y: scroll;}

.c-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
}

.c-panel{
  position: relative;
  width: min(720px, 92vw);
  margin: 7vh auto 0;
  background: rgba(0,0,0,0.86);
  border: 1px solid rgba(217,168,80,0.35);
  box-shadow: 0 0 60px rgba(0,0,0,0.8);
  border-radius: 14px;
  padding: 26px 22px 20px;
  color: rgba(217,168,80,0.95);
}

.c-close{
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(217,168,80,0.35);
  background: rgba(0,0,0,0.35);
  color: rgba(217,168,80,0.95);
  cursor: pointer;
}

.c-title{
  margin: 0 0 18px;
  font-family: "Manrope", system-ui, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 18px;
}

.c-form{ margin: 0; }

.c-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.c-field{
  display: grid;
  gap: 7px;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.c-field span{
  opacity: 0.85;
}

.c-field input,
.c-field select,
.c-field textarea{
  width: 100%;
  box-sizing: border-box;
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid rgba(217,168,80,0.25);
  background: rgba(0,0,0,0.35);
  color: rgba(217,168,80,0.95);
  outline: none;
  font-family: "Manrope", system-ui, sans-serif;
  letter-spacing: 0.02em;
}

.c-field textarea{ resize: vertical; min-height: 130px; }

.c-field input:focus,
.c-field select:focus,
.c-field textarea:focus{
  border-color: rgba(217,168,80,0.75);
  box-shadow: 0 0 24px rgba(217,168,80,0.12);
}

.c-field-full{ grid-column: 1 / -1; }

.c-actions{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}

.c-send{
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(217,168,80,0.55);
  background: transparent;
  color: rgba(217,168,80,0.95);
  font-family: "Manrope", system-ui, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.c-send:hover{
  border-color: rgba(217,168,80,0.9);
  box-shadow: 0 0 26px rgba(217,168,80,0.10);
}

.c-status{
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 13px;
  opacity: 0.9;
}

@media (max-width: 640px){
  .c-grid{ grid-template-columns: 1fr; }
  .c-panel{ width: unset; margin: unset; padding: 15px; }
}

.c-captcha-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.c-captcha-q{
  font-family: "Manrope", system-ui, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0.9;
}

.c-captcha-refresh{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(217,168,80,0.35);
  background: rgba(0,0,0,0.35);
  color: rgba(217,168,80,0.95);
  cursor: pointer;
}
.c-captcha-refresh:hover{
  border-color: rgba(217,168,80,0.8);
}

.toast{
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%) translateY(24px);
  z-index: 9999;

  opacity: 0;
  pointer-events: none;

  transition: opacity 240ms ease, transform 240ms ease;
}

.toast.is-show{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast-inner{
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 14px 18px;
  border-radius: 14px;

  background: rgba(0,0,0,0.78);
  border: 1px solid rgba(217,168,80,0.55);
  backdrop-filter: blur(10px);

  box-shadow:
    0 0 26px rgba(217,168,80,0.18),
    0 18px 60px rgba(0,0,0,0.55);
}

.toast-check{
  width: 34px;
  height: 34px;
  border-radius: 999px;

  display: grid;
  place-items: center;

  background: radial-gradient(circle at 30% 30%, rgba(248,225,176,0.95), rgba(217,168,80,0.95));
  color: #1a1206;

  font-weight: 800;
  font-family: "Manrope", system-ui, sans-serif;

  box-shadow: 0 0 22px rgba(217,168,80,0.22);
}

.toast-title{
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 13px;
  color: rgba(217,168,80,0.98);
}

.toast-sub{
  margin-top: 2px;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.78);
}

/* optional: small “pop” */
@keyframes toastPop{
  0%{ transform: translateX(-50%) translateY(18px) scale(0.98); opacity: 0; }
  100%{ transform: translateX(-50%) translateY(0) scale(1); opacity: 1; }
}
.toast.is-show{ animation: toastPop 240ms ease; }



.top-bar[hidden]{
  display: none !important;
}

.section-about{
  position: relative;
  min-height: 100vh;
  display: block;
  overflow: visible;
}


/* Center title */
.about-inner{
  position: absolute;
  z-index: 12;
  width: min(1100px, 92vw);
  text-align: center;
  padding-top: 90px;
  box-sizing: border-box;
  top: 0
}

.about-title{
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: clamp(34px, 5.2vw, 48px);
  color: rgba(217,168,80,0.95);
  text-shadow: 0 0 18px rgba(0,0,0,0.65);
}


.about-dunes{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(100vh, 660px);
  z-index: 11;
  background-image: url("/images/about/about-dunes.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 75%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to top, rgba(0,0,0,1) 75%, rgba(0,0,0,0) 100%);
  pointer-events: none;
  opacity: 1;
  filter: saturate(0.9) contrast(1.05);
  filter: brightness(20%);
}


@media (max-width: 640px){
  .about-inner{ padding-top: 70px; }
  .about-dunes{ height: min(46vh, 360px); opacity: 1; }
}

.about-details{
  width: 100%;
  background: #000;
  padding: clamp(70px, 9vw, 140px) 0;
}

.about-row{
  width: 100%;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
}

.about-image img{
  width: 100%;
  height: auto;
  display: block;
}

.about-text{
  padding: clamp(28px, 4.5vw, 80px);
  color: rgba(217,168,80,0.82);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.9;
  font-size: clamp(13px, 1.2vw, 18px);
  text-align: center;
}

.about-text h3{
  margin: 34px 0 14px;
  font-size: clamp(16px, 1.5vw, 20px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(217,168,80,0.95);
}

.about-divider{
  width: 180px;
  height: 4px;
  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%
  );
  margin: 44px auto 0;
}

.about-row.reverse {
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.about-hero{
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


@media (max-width: 900px){

  .about-row,
  .about-row.reverse{
    grid-template-columns: 1fr;
  }

  .about-row .about-image{
    order: 1;
  }
  .about-row .about-text{
    order: 2;
  }

  .about-row.reverse .about-image{
    order: 1;
  }
  .about-row.reverse .about-text{
    order: 2;
  }
}

.about-values{
  width: 100%;
  background: transparent;
  padding: clamp(80px, 10vw, 140px) 0;
}

.about-values-inner{
  width: min(1200px, 92vw);
  margin: 0 auto;
  text-align: center;
}

.about-values-title{
  margin: 0 0 clamp(46px, 6vw, 70px);
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: clamp(30px, 4.6vw, 54px);
  color: rgba(217,168,80,0.95);
  text-shadow: 0 0 18px rgba(0,0,0,0.65);
}

.about-values-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 3.5vw, 60px);
  align-items: stretch;
}

.about-value h3{
  margin: 0 0 18px;
  min-height: 3.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: clamp(16px, 2vw, 22px);
  color: rgba(217,168,80,0.95);
}


.about-value p{
  margin: 0;
  margin-top: auto;
  max-width: 360px;
  text-align: center;

  color: rgba(217,168,80,0.78);
  line-height: 1.85;
  font-size: clamp(12.5px, 1.2vw, 18px);
  text-shadow: 0 0 10px rgba(0,0,0,0.55);
}

.about-value{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-values .about-divider{
  margin-top: clamp(50px, 7vw, 90px);
}

/* Mobile */
@media (max-width: 900px){
  .about-values-grid{
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .about-value p{
    max-width: 520px;
  }
}

.about-spirit{
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #000;
}

.about-spirit-bg{
  position: absolute;
  inset: 0;
  background-image: url("/images/about/about-4.jpg");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  filter: saturate(0.9) contrast(1.05) brightness(2);
  transform: scale(1.02);
}

.about-spirit::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 50% 35%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.85) 100%);
  pointer-events:none;
}

.about-spirit-inner{
  position: absolute;
  top: 0;
  z-index: 2;
  width: min(980px, 92vw);
  text-align: center;
  padding: 120px 16px 90px;
  color: rgba(217,168,80,0.95);
}

.about-spirit-title{
  margin: 0 0 18px;
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: clamp(34px, 5.2vw, 48px);
  text-shadow: 0 0 18px rgba(0,0,0,0.6);
}

.about-spirit-text{
  margin: 0 auto;
  max-width: 720px;
  color: rgba(217,168,80,0.78);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.9;
  font-size: clamp(13px, 1.2vw, 18px);
  text-shadow: 0 0 12px rgba(0,0,0,0.55);
}


.about-spirit{
  scroll-margin-bottom: 120px;
  padding-bottom: 120px;
}

.about-spirit::before{
  content: "";
  position: absolute;
  bottom: -120px;
  height: 120px;
  width: 100%;
}
