@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Cormorant+Garamond:wght@400;500;600&display=swap');

:root{
  --black:#050505;
  --black2:#090909;
  --gold:#d8b45a;
  --gold2:#f3d98b;
  --soft:#d8d0bd;
  --white:#ffffff;
}

*{ box-sizing:border-box; }

html,body{
  margin:0;
  width:100%;
  overflow-x:hidden;
  background:var(--black);
  color:var(--white);
  font-family:'Cormorant Garamond', Georgia, serif;
}

h1,h2,h3,.logo,.eyebrow,.nav-btn,.gold-btn,.mobile-order-btn{
  font-family:'Cinzel', Georgia, serif;
}

/* HERO */

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

.hero-slideshow{
  position:absolute;
  inset:0;
  z-index:0;
  overflow:hidden;
}

.hero-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center 35%;
  opacity:0;
  transform:scale(1.03);
  transition:opacity 1.5s ease-in-out;
  filter:brightness(1.12) contrast(1.05);
}

.hero-slide.active{
  opacity:1;
  animation:slowZoom 10s ease-in-out infinite alternate;
}

.hero-slideshow::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at center, rgba(0,0,0,.08), rgba(0,0,0,.58)),
    linear-gradient(rgba(0,0,0,.18), rgba(0,0,0,.62));
  z-index:2;
}

nav{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  padding:18px 32px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:50;
  background:linear-gradient(rgba(5,5,5,.82), rgba(5,5,5,.35), transparent);
  backdrop-filter:blur(8px);
}

.logo{
  color:var(--gold);
  letter-spacing:3px;
  font-size:18px;
}

.hero-content{
  position:relative;
  z-index:3;
  max-width:980px;
  margin:auto;
  text-align:center;
  padding:80px 24px;
  animation:fadeUp 1.4s ease;
}

.eyebrow{
  color:var(--gold2);
  text-transform:uppercase;
  letter-spacing:4px;
  font-size:14px;
}

h1{
  font-size:clamp(52px,8vw,105px);
  line-height:.92;
  letter-spacing:7px;
  margin:18px 0 12px;
  text-transform:uppercase;
  text-shadow:0 5px 30px rgba(0,0,0,.8);
}

.hero-tagline{
  color:#f5ead0;
  font-size:clamp(21px,2.7vw,32px);
  margin:0 auto 20px;
  line-height:1.3;
  text-shadow:0 4px 22px rgba(0,0,0,.8);
}

.gold-divider{
  width:220px;
  height:1px;
  margin:22px auto 26px;
  background:linear-gradient(90deg, transparent, var(--gold2), transparent);
}

.subtitle{
  color:#e7e2d2;
  font-size:clamp(20px,2.4vw,26px);
  line-height:1.45;
  max-width:760px;
  margin:0 auto 38px;
  font-weight:300;
  text-shadow:0 4px 20px rgba(0,0,0,.8);
}

/* BUTTONS */

.nav-btn,.gold-btn{
  display:inline-block;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#050505;
  padding:14px 28px;
  border-radius:999px;
  text-decoration:none;
  font-weight:bold;
  box-shadow:0 0 25px rgba(216,180,90,.28);
  transition:all .3s ease;
}

.nav-btn:hover,.gold-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 0 40px rgba(243,217,139,.55);
}

/* GENERAL */

section{
  padding:90px 24px;
  text-align:center;
}

h2{
  color:var(--gold);
  font-size:clamp(34px,5vw,58px);
  margin:0 0 20px;
}

.intro p,.story p,.order p{
  max-width:760px;
  margin:0 auto;
  color:var(--soft);
  font-size:20px;
  line-height:1.8;
}

/* FEATURED CARDS */

.featured-card{
  min-height:100vh;
  background:var(--black2);
  display:grid;
  grid-template-columns:minmax(280px,430px) minmax(300px,560px);
  justify-content:center;
  align-items:center;
  gap:90px;
  padding:120px max(40px, calc((100vw - 1180px) / 2));
  text-align:left;
}

.featured-image img{
  width:100%;
  max-width:420px;
  height:auto;
  display:block;
  margin:0 auto;
  border-radius:18px;
  border:1px solid rgba(216,180,90,.35);
  box-shadow:0 30px 90px rgba(0,0,0,.65);
}

.featured-text{
  max-width:560px;
  width:100%;
}

.featured-text h2{
  text-align:left;
  margin:15px 0 25px;
}

.quote{
  color:var(--gold2);
  font-size:32px;
  line-height:1.3;
  margin:25px 0;
  font-style:italic;
}

.featured-text p{
  color:var(--soft);
  font-size:22px;
  line-height:1.7;
  margin:0 0 20px;
}

/* BOX SHOWCASE */

.box-showcase{
  min-height:90vh;
  background:#050505;
  display:grid;
  grid-template-columns:minmax(300px,500px) minmax(300px,520px);
  align-items:center;
  justify-content:center;
  gap:80px;
  padding:110px max(40px, calc((100vw - 1180px) / 2));
  text-align:left;
}

.box-showcase.reverse .box-image{ order:2; }
.box-showcase.reverse .box-text{ order:1; }

.box-image img{
  width:100%;
  max-width:460px;
  border-radius:22px;
  border:1px solid rgba(216,180,90,.35);
  box-shadow:0 35px 100px rgba(0,0,0,.75);
  display:block;
  margin:0 auto;
}

.box-text{ max-width:520px; }

.box-text p{
  color:var(--soft);
  font-size:22px;
  line-height:1.7;
}

.feature-list{
  margin-top:35px;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.feature-list div{
  color:var(--gold2);
  font-size:22px;
  line-height:1.4;
  text-align:left;
}

/* INCLUDED */

.included{
  background:
    radial-gradient(circle at center, rgba(216,180,90,.10), transparent 55%),
    #070707;
}

.included-grid{
  max-width:1100px;
  margin:45px auto 0;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.included-item{
  border:1px solid rgba(216,180,90,.35);
  border-radius:20px;
  padding:28px 22px;
  background:rgba(255,255,255,.03);
  box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.included-item h3{
  color:var(--gold2);
  font-size:20px;
  margin:0 0 15px;
}

.included-item p{
  color:var(--soft);
  font-size:18px;
  line-height:1.6;
  margin:0;
}

/* EDITION */

.edition{
  background:
    radial-gradient(circle at center, rgba(216,180,90,.12), transparent 55%),
    var(--black);
}

.features{
  max-width:900px;
  margin:35px auto 0;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}

.features span{
  border:1px solid rgba(216,180,90,.45);
  border-radius:14px;
  padding:18px;
  color:var(--gold2);
}

/* GALLERY */

.gallery-section{
  background:
    radial-gradient(circle at top, rgba(216,180,90,.10), transparent 55%),
    #060606;
}

.gallery-intro{
  max-width:780px;
  margin:0 auto 45px;
  color:var(--soft);
  font-size:22px;
  line-height:1.7;
}

.gallery-grid{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.gallery-grid img{
  width:100%;
  border-radius:18px;
  border:1px solid rgba(216,180,90,.35);
  box-shadow:0 25px 70px rgba(0,0,0,.55);
  transition:.35s ease;
}

.gallery-grid img:hover{
  transform:translateY(-8px) scale(1.02);
  box-shadow:0 35px 90px rgba(216,180,90,.22);
}

.gallery-img{ cursor:pointer; }

/* LIGHTBOX */

.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.92);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:999;
  padding:30px;
}

.lightbox.active{ display:flex; }

.lightbox img{
  max-width:90vw;
  max-height:88vh;
  border-radius:18px;
  border:1px solid rgba(216,180,90,.45);
  box-shadow:0 30px 100px rgba(0,0,0,.85);
}

.lightbox-close{
  position:absolute;
  top:24px;
  right:34px;
  color:var(--gold2);
  font-size:46px;
  cursor:pointer;
}

/* STORY / ORDER / FOOTER */

.order{ background:#0c0c0c; }

.order p{ margin-bottom:35px; }

.site-footer{
  padding:70px 24px 40px;
  text-align:center;
  background:#050505;
  border-top:1px solid rgba(216,180,90,.25);
}

.footer-logo{
  font-family:'Cinzel', Georgia, serif;
  color:var(--gold);
  letter-spacing:4px;
  font-size:24px;
  margin-bottom:20px;
}

.footer-tagline{
  max-width:620px;
  margin:0 auto 18px;
  color:var(--soft);
  font-size:20px;
  line-height:1.7;
}

.footer-intention{
  color:var(--gold2);
  font-size:18px;
  margin:0 auto 32px;
  font-style:italic;
}

.footer-socials{
  display:flex;
  justify-content:center;
  gap:28px;
  flex-wrap:wrap;
  margin-bottom:35px;
}

.footer-socials a{
  color:var(--gold2);
  text-decoration:none;
  font-family:'Cinzel', Georgia, serif;
  letter-spacing:1px;
  font-size:15px;
  transition:.3s ease;
}

.footer-socials a:hover{ color:white; }

.footer-copy{
  color:#8f856d;
  font-size:15px;
}

/* MOBILE ORDER BUTTON */

.mobile-order-btn{
  display:none;
}

/* ANIMATIONS */

.reveal{
  opacity:0;
  transform:translateY(30px);
  transition:1s ease;
}

.reveal.visible{
  opacity:1;
  transform:translateY(0);
}

@keyframes slowZoom{
  0%{transform:scale(1.02);}
  100%{transform:scale(1.1);}
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* MOBILE */

@media(max-width:850px){

  body{
    padding-bottom:85px;
  }

  nav{
    padding:18px;
  }

  .nav-btn{
    display:none;
  }

  .mobile-order-btn{
    display:block;
    position:fixed;
    bottom:calc(18px + env(safe-area-inset-bottom));
    left:50%;
    transform:translateX(-50%);
    z-index:998;
    background:linear-gradient(135deg,var(--gold),var(--gold2));
    color:#050505;
    padding:14px 38px;
    border-radius:999px;
    text-decoration:none;
    font-weight:bold;
    font-size:15px;
    letter-spacing:1px;
    box-shadow:0 0 35px rgba(216,180,90,.45);
    border:1px solid rgba(255,255,255,.25);
  }

  .lightbox.active ~ .mobile-order-btn{
    display:none;
  }

  .hero{
    min-height:100vh;
    padding:20px;
  }

  .hero-slide{
    background-size:cover;
    background-position:center 30%;
    filter:brightness(1.18) contrast(1.05);
  }

  .hero-slideshow::after{
    background:linear-gradient(rgba(0,0,0,.22), rgba(0,0,0,.72));
  }

  .hero-content{
    padding:90px 20px 60px;
  }

  h1{
    font-size:clamp(42px,15vw,70px);
    letter-spacing:4px;
  }

  .hero-tagline{
    font-size:22px;
  }

  .subtitle{
    font-size:19px;
    max-width:330px;
  }

  .featured-card{
    min-height:auto;
    grid-template-columns:1fr;
    gap:38px;
    padding:80px 24px;
    text-align:center;
  }

  .featured-image img{
    max-width:min(360px, 92vw);
  }

  .featured-text{
    max-width:650px;
    margin:0 auto;
  }

  .featured-text h2{
    text-align:center;
  }

  .quote{
    font-size:28px;
  }

  .gallery-grid{
    grid-template-columns:repeat(2,1fr);
    gap:14px;
  }

  .gallery-intro{
    font-size:20px;
  }

  .box-showcase{
    min-height:auto;
    grid-template-columns:1fr;
    gap:35px;
    padding:80px 24px;
    text-align:center;
  }

  .box-showcase.reverse .box-image,
  .box-showcase.reverse .box-text{
    order:initial;
  }

  .box-image img{
    max-width:min(360px, 92vw);
  }

  .box-text{
    margin:0 auto;
  }

  .box-text p{
    font-size:20px;
  }

  .feature-list div{
    text-align:center;
    font-size:20px;
  }

  .included-grid,
  .features{
    grid-template-columns:1fr;
  }
}