/* ───────────────────────────────────────────
       DESIGN TOKENS
    ─────────────────────────────────────────── */
:root {
  --bg-dark: #200d06;
  --gold: #d5b191;
  --gold-light: #efdec9;
  --gold-warm: #dfcdb8;
  --gold-deeper: #eedec7;
  --white: #ffffff;
  --font-serif: 'Griggs';
  --font-sans: "PP Neue Montreal Book";
}

/* ───────────────────────────────────────────
       BASE
    ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
    font-family: 'Griggs';
    src: url('fonts/font/Griggs-SerifSs01.woff') format('woff2'),
        url('fonts/font/Griggs-SerifSs01.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Montreal Book';
    src: url('fonts/font/PPNeueMontreal-Book.woff2') format('woff2'),
        url('fonts/font/PPNeueMontreal-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Montreal';
    src: url('fonts/font/PPNeueMontreal-Bold.woff2') format('woff2'),
        url('fonts/font/PPNeueMontreal-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Montreal';
    src: url('fonts/font/PPNeueMontreal-Medium.woff2') format('woff2'),
        url('fonts/font/PPNeueMontreal-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}


html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-dark);
  color: var(--gold);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

img {
  display: block;
}

/* ───────────────────────────────────────────
       NAVBAR
    ─────────────────────────────────────────── */
.shishi-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 103px;
  background: rgba(32, 13, 6, 0.65);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  display: flex;
  align-items: center;
}

.shishi-nav .nav-logo img {
  /* height: 27px; */
  width: 105px;
  object-fit: contain;
  object-position: left center;
}

.shishi-nav .nav-logo img.eng-logo {
    padding-bottom: 8px;
}

.shishi-nav .nav-links {
  display: flex;
  gap: 60px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.shishi-nav .nav-links a {
  font-family: "PP Neue Montreal Book";
  /* font-family: var(--font-sans); */
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
  line-height: 80px;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.shishi-nav .nav-links a:hover {
  opacity: 0.7;
}

.nav-contact-btn {
  font-family: "PP Neue Montreal Book";
  /* font-family: var(--font-sans); */
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
  border: 1px solid rgb(239 222 201 / 30%);
  padding: 10px 22px;
  transition: 0.3s ease all;
  white-space: nowrap;
  background: transparent;
}

.nav-contact-btn:hover {
  background: var(--gold-light);
  color: var(--bg-dark);
}



/* ───────────────────────────────────────────
       MOBILE MENU
    ─────────────────────────────────────────── */

/* Offcanvas styling */
div#mobileMenu {
  background-color: #200D06;
  color: #fff;
  width: 360px;
}

/* Close button white */
.shishi-offcanvas .btn-close {
  filter: invert(1);
}

/* Logo */

.mobile_logo_sv img {
  width: 80px;
}

/* Links */
.mobile-nav-links {
  list-style: none;
  padding: 0;
}

.mobile-nav-links li {
  position: relative;
  padding: 12px 0;
}

.mobile-nav-links li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ffffff10;
}

.mobile-nav-links li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #ffffff;
  transition: width 0.4s ease;
}

.mobile-nav-links li:hover::after {
  width: 100%;
}

.mobile-nav-links a {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.mobile-nav-links a:hover {
  color: #fff;
}

/* Hide desktop menu on mobile */
@media (max-width: 991px) {
  .nav-links,
  .nav-contact-btn {
    display: none !important;
  }
}

/* ───────────────────────────────────────────
       HERO
    ─────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(19, 6, 1, 0.48);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 100px;
}

.hero-headline-row {
  /* display: flex;
  flex-direction: column;
  align-items: flex-end; */
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(42px, 3.75vw, 68px);
  line-height: 1.06;
  color: var(--gold-warm);
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.01em;
  display: block;
}

.hero-subtext {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.35;
  color: var(--gold);
  /* max-width: 620px; */
  margin-top: 18px;
  margin-bottom: 0;
}

/* ───────────────────────────────────────────
       CREATION / MASTERPIECE SECTION
    ─────────────────────────────────────────── */
.creation-section {
  position: relative;
  padding: 140px 0 200px;
  background: var(--bg-dark);
}

.creation-title {
  font-family: var(--font-serif);
  font-size: 36px;
  line-height: 1.0;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 400;
}

.creation-body {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gold);
  margin-top: 12px;
}

.creation-center-img {
  width: 100%;
  max-width: 310px;
  margin: 0 auto;
  display: block;
}

.about-main-img .img-cr-1 {
  object-fit: contain;
  width: 100%;
  /* height: 276.765px; */
  /* aspect-ratio: 59 / 54; */
}

.about-main-img .img-cr-2 {
  position: absolute;
  bottom: -10px;
  left: -10px;
  width: 160px;
  height: auto;
  object-fit: contain;
  z-index: 2;
}

/* ───────────────────────────────────────────
       HERITAGE SECTION
    ─────────────────────────────────────────── */
.heritage-section {
  position: relative;
  /* overflow: hidden; */
  min-height: 750px;
}

.heritage-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.heritage-overlay-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to bottom, var(--bg-dark), transparent);
  z-index: 1;
}

.heritage-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--bg-dark), transparent);
  z-index: 1;
}

.heritage-bg-tint {
  position: absolute;
  inset: 0;
  background: rgba(45, 13, 1, 0.6);
  mix-blend-mode: multiply;
  z-index: 0;
}

.heritage-content {
  z-index: 2;
  padding: 100px 0;
  text-align: center;
  position: relative;
  top: -220px;
}

.heritage-headline {
  font-family: var(--font-serif);
  font-size: clamp(36px, 3.75vw, 72px);
  color: var(--gold-warm);
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Emblem decorations */
.emblem-left,
.emblem-right {
  position: absolute;
  z-index: 2;
}

img.heritage-mask-img.responsive {
  display: none;
}

/* Masked image in center */
.heritage-mask-img {
  width: 90%;
  margin: 70px auto 0;
  display: block;
  border-radius: 2px;
  object-fit: cover;
}

/* Emblem coins — shared style, positions set inline */
.heritage-emblem {
  position: absolute;
  width: 249px;
  height: 249px;
  object-fit: contain;
  z-index: 3;
}

/* Coming soon button */
.coming-soon-wrap {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.coming-soon-btn {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--gold);
  border: none;
  padding: 16px 40px;
  letter-spacing: 0.06em;
  text-decoration: none;
  display: inline-block;
  transition: background 0.25s, color 0.25s;
  pointer-events: none;
}

/* .coming-soon-btn:hover {
  background: var(--gold);
  color: var(--bg-dark);
} */

/* ───────────────────────────────────────────
       COLLECTION SECTION
    ─────────────────────────────────────────── */
.collection-section {
  padding: 80px 0 60px;
  background: var(--bg-dark);
}

.collection-section .collection-row {
  position: relative;
  top: -300px;
  z-index: 1;
  scroll-margin-top: 200px;
}

.collection-item {
  text-align: center;
  padding: 0 16px;
}

.collection-item img {
  width: auto;
  max-width: 100%;
  height: 200px;
  object-fit: contain;
  margin: 0 auto 20px;
  display: block;
}

.product-name {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 18px;
  margin: 0;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.0;
  letter-spacing: 0.04em;
}

.product-desc {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1.7;
  margin-top: 4px;
}

.product-price {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

/* ───────────────────────────────────────────
       OUR STORY SECTION
    ─────────────────────────────────────────── */
.story-section {
  padding: 120px 0 20px;
  background: var(--bg-dark);
  scroll-margin-top: -50px;
}

.story-headline {
  font-family: var(--font-serif);
  font-size: clamp(56px, 4.7vw, 90px);
  color: var(--gold-deeper);
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.85;
  margin-bottom: 100px;
}

.story-body {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gold);
  margin-top: 20px;
  text-align: center;
  width: 440px;
  margin: 0 auto;
}

.story-logo {
  height: 49px;
  width: auto;
  margin: 36px auto 0;
  display: block;
}

.story-image {
  width: 443.333px;
  height: 665px;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 3 / 2;
}

/* ───────────────────────────────────────────
       DATES TRAY / FOOTER TOP
    ─────────────────────────────────────────── */
.dates-tray-section {
  position: relative;
  /* overflow: hidden; */
  background: #200d06;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dates-tray-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

.dates-tray-img {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 90%;
  height: auto;
  display: block;
  margin: 0 auto;
  top: 80px;
}

/* gradient overlays for tray section */
.tray-grad-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to bottom, var(--bg-dark), transparent);
  z-index: 1;
}

.tray-grad-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, var(--bg-dark), transparent);
  z-index: 1;
}

/* ───────────────────────────────────────────
       FOOTER
    ─────────────────────────────────────────── */
.shishi-footer {
  background: var(--bg-dark);
  padding: 140px 0 20px;
  text-align: center;
  border-top: none;
}

.footer-logo img {
  height: 59px;
  width: auto;
  margin: 0 auto;
  display: block;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 16px 0;
}

.footer-social a {
  color: var(--gold);
  font-size: 16px;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer-social a:hover {
  opacity: 1;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0px 30px;
  margin: 50px 0 20px;
}

.footer-nav a {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: opacity 0.2s;
}

.footer-nav a:hover {
  opacity: 0.6;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold) 50%, transparent);
  opacity: 0.5;
  margin: 20px 0;
  border: none;
}

.footer-copyright {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.02em;
}

/* ───────────────────────────────────────────
       POPUP
    ─────────────────────────────────────────── */


/* Overlay */
.custom-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(32 13 6 / 80%);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  z-index: 9998;
}

/* Popup wrapper */
.custom-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 90%;
  max-width: 1100px;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  z-index: 9999;
}

/* Active state */
.custom-popup.active,
.custom-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.custom-popup.active {
  transform: translate(-50%, -50%) scale(1);
}

/* Content */
.popup-content {
  display: flex;
  background: #200D06;
  border-radius: 0px;
  overflow: hidden;
  position: relative;
  padding: 12px;
}

/* LEFT 60% */
.popup-left {
  width: 60%;
  padding: 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-width: 1px 0px 1px 1px;
  border-style: solid;
  border-color: rgb(213 177 145 / 10%);
}

.popup-left h2 {
  margin-bottom: 20px;
  font-family: var(--font-serif);
  font-size: 36px;
  line-height: 1.0;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 400;
}

/* Form */
.popup-form input,
.popup-form textarea {
  width: 100%;
  background: transparent;
  border: 1px solid #ffffff30;
  padding: 10px;
  color: #EFDEC9;
}

.popup-form input::placeholder, .popup-form textarea::placeholder {
    color: #EFDEC950;
    font-family: 'PP Neue Montreal Book';
    font-size: 14px;
}

.popup-form textarea {
  height: 120px;
  resize: none;
}

.submit-btn {
  margin-top: 15px;
  background: transparent;
  border: 1px solid rgb(239 222 201 / 30%);
  padding: 10px 20px;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  transition: 0.4s all;
}

.submit-btn:hover {
  background: var(--gold-light);
  color: #200D06;
}

/* RIGHT 40% */
.popup-right {
  width: 40%;
  position: relative;
}

.popup-right img.popup-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popup-right img.popup-date-image {
  position: absolute;
  bottom: -29px;
  left: -44px;
}

/* Close button */
.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* Responsive */
@media(max-width: 768px){
  .popup-content {
    flex-direction: column;
  }

  .popup-left,
  .popup-right {
    width: 100%;
  }

  .popup-right {
    height: 200px;
    display: none;
  }

  .popup-left {
    border-width: 1px 1px 1px 1px;
  }
}

/* ───────────────────────────────────────────
       SECTION DIVIDER LINE
    ─────────────────────────────────────────── */
.section-line {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(213, 177, 145, 0.5) 50%, transparent);
  margin: 0;
  border: none;
}

/* ───────────────────────────────────────────
       ANIMATIONS
    ─────────────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.9s ease forwards;
}

.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.delay-3 {
  animation-delay: 0.45s;
}

.delay-4 {
  animation-delay: 0.6s;
}

/* ───────────────────────────────────────────
       RESPONSIVE TWEAKS
    ─────────────────────────────────────────── */
@media (max-width: 1200px) {
  .heritage-emblem {
    width: 180px;
    height: 180px;
  }
  .story-headline {
    margin-bottom: 60px;
  }
}

@media (max-width: 1024px) {
  .creation-section {
    padding: 100px 0 200px;
  }
  .heritage-content {
    top: -240px;
  }
}

@media (max-width: 991px) {
  .hero {
    height: 500px;
  }
  .heritage-emblem {
    display: none;
  }

  .hero-content {
    padding-bottom: 80px;
  }

  .story-section {
    padding: 180px 0 20px;
  }

  .story-image {
    margin-top: 20px;
  }

  .shishi-nav {
    height: 72px;
  }

  .shishi-nav .container {
    max-width: 100%;
  }

  /* .shishi-nav .nav-logo img {
    height: 22px;
    width: 84px;
  } */

  .collection-section .collection-row {
    top: -500px;
  }
}

@media (max-width: 767px) {
  .hero {
    height: 400px;
    min-height: 400px;
  }
  .hero-content {
    padding-bottom: 30px;
  }
  .hero-headline {
    font-size: 32px;
  }

  .hero-subtext {
    font-size: 16px;
  }

  .creation-section {
    padding: 85px 0 200px;
  }

  .creation-title {
    font-size: 28px;
  }

  .heritage-content {
    top: -260px;
    padding-bottom: 0;
  }

  .collection-section .collection-row {
    top: -560px;
  }

  .heritage-section {
    min-height: 750px;
  }

  .heritage-headline {
    font-size: 28px;
  }

  .heritage-mask-img {
    /* height: 260px; */
    margin: 30px auto 0;
  }

  .coming-soon-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .collection-section {
    padding: 0px;
  }

  .collection-item img {
    height: 150px;
  }

  .story-section {
    padding: 80px 0 20px;
  }

  .story-headline {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .story-image {
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: 2 / 2;
    object-fit: contain;
  }

  .story-body {
    width: auto;
  }

  .dates-tray-section {
    min-height: 100px;
  }

  .dates-tray-img {
    top: 30px;
  }

  .shishi-footer {
    padding: 70px 0px 20px;
  }

  .footer-nav {
    gap: 16px;
  }
}


@media (max-width: 575px) {

  .popup-left {
    padding: 20px;
  }  

  .popup-left h2 {
    font-size: 28px;
  }

  img.heritage-mask-img.not-responsive {
    display: none;
  }

  img.heritage-mask-img.responsive {
    display: block;
  }
  .about-main-img .img-cr-1 {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
  }
  .collection-section .collection-row {
    top: -520px;
  }
  .story-section {
    padding: 100px 0 20px;
  }
  .about-main-img .img-cr-2 {
      left: 50px;
      bottom: -20px;
  }
}

@media (max-width: 480px) {
    .collection-section .collection-row {
        top: -560px;
    }
    
    .story-section {
        padding: 70px 0 20px;
    }
}

@media (max-width:420px) {
    .story-section {
        padding: 60px 0 20px;
        position: relative;
        z-index: 5;
    }
    
    .collection-section .collection-row {
        top: -610px;
    }
}

@media (max-width: 400px) {
  .collection-section .collection-row {
    top: -605px;
  }
}