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

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  background:#050505;
  color:#f5f5f5;
  font-family:'Inter',sans-serif;
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  background:
    radial-gradient(circle at top, rgba(212,175,55,0.08), transparent 40%);
  pointer-events:none;
  z-index:-1;
}

.hero{
  min-height:100vh;
  padding:2rem 6%;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

/* ====================
   NAVBAR
========================= */

.nav{
  position:sticky;

  top:24px;

  z-index:1000;

  width:min(64%, 1650px);

  margin:0 auto;

  padding:1.2rem 2.5rem;

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

  border-radius:28px;

  background:rgba(10,10,10,0.72);

  backdrop-filter:blur(18px);

  border:1px solid rgba(255,255,255,0.06);

  box-shadow:
    0 15px 50px rgba(0,0,0,0.45),
    inset 0 0 0 1px rgba(212,175,55,0.04);
}

.logo{
  display:flex;
  align-items:center;

  gap:1.6rem;

  flex-shrink:0;
}

.logo img{
  height:72px;

  width:auto;

  display:block;

  object-fit:contain;
}

.logo::before{
  content:"";
  width:34px;
  height:1px;
  background:linear-gradient(
    to right,
    transparent,
    rgba(212,175,55,0.7)
  );
}

.logo::after{
  content:"";
  position:absolute;
  bottom:-10px;
  left:42px;

  width:40%;
  height:1px;

  background:linear-gradient(
    to right,
    rgba(212,175,55,0.5),
    transparent
  );

  opacity:0.7;
}

.logo:hover{
  transform:translateY(-1px);
  text-shadow:
    0 0 18px rgba(212,175,55,0.25),
    0 0 35px rgba(212,175,55,0.12);
}

.nav-links{
  display:flex;
  align-items:center;

  gap:3.5rem;
}

.nav-links a{
  position:relative;

  color:#d8d8d8;

  text-decoration:none;

  font-size:0.96rem;

  letter-spacing:0.4px;

  transition:0.35s ease;
}

.nav-links a::after{
  content:"";

  position:absolute;

  left:0;
  bottom:-6px;

  width:0%;
  height:1px;

  background:#d4af37;

  transition:0.35s ease;
}

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

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

.hero-content{
  max-width:800px;
  margin:auto 0;
  padding:8rem 0;
}

.kicker{
  color:#d4af37;
  text-transform:uppercase;
  letter-spacing:3px;
  font-size:0.8rem;
  margin-bottom:1rem;
}

.hero h1{
  font-family:'Cormorant Garamond',serif;
  font-size:5rem;
  line-height:1;
  max-width:800px;
  margin-bottom:2rem;
}

.hero-text{
  color:#b5b5b5;
  font-size:1.1rem;
  line-height:1.8;
  max-width:650px;
  margin-bottom:2.5rem;
}

.hero-buttons{
  display:flex;
  gap:1rem;
  flex-wrap:wrap;
}

.btn{
  padding:1rem 2rem;
  border-radius:999px;
  text-decoration:none;
  font-size:0.95rem;
  transition:0.3s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.primary{
  background:#d4af37;
  color:#050505;
  font-weight:600;
}

.primary:hover{
  transform:translateY(-2px);
  background:#e5c158;
}

.secondary{
  border:1px solid rgba(255,255,255,0.15);
  color:#f5f5f5;
  background:rgba(255,255,255,0.03);
  backdrop-filter:blur(10px);
}

.secondary:hover{
  border-color:#d4af37;
  color:#d4af37;
}

.section{
  padding:7rem 6%;
}

.section h2{
  font-family:'Cormorant Garamond',serif;
  font-size:3rem;
  margin-bottom:3rem;
}

.about{
  max-width:900px;
}

.about p{
  color:#b5b5b5;
  line-height:2;
  font-size:1.1rem;
}

.card-grid,
.project-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:2rem;
}

.card,
.project-card{
  padding:2rem;
  border-radius:24px;
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.06);
  backdrop-filter:blur(12px);
  transition:0.3s ease;
}

.card:hover,
.project-card:hover{
  transform:translateY(-6px);
  border-color:rgba(212,175,55,0.35);
}

.card h3,
.project-card h3{
  margin-bottom:1rem;
  font-size:1.4rem;
}

.card p,
.project-card p{
  color:#b5b5b5;
  line-height:1.8;
}

.project-card span{
  color:#d4af37;
  font-size:0.9rem;
  letter-spacing:2px;
}

.contact{
  text-align:center;
}

.contact p{
  color:#b5b5b5;
  margin-bottom:2rem;
}

footer{
  padding:2rem;
  text-align:center;
  border-top:1px solid rgba(255,255,255,0.06);
}

footer p{
  color:#777;
  font-size:0.9rem;
}

@media(max-width:900px){

  .hero h1{
    font-size:3.5rem;
  }

  .nav{
    flex-direction:column;
    gap:1.5rem;
  }

  .nav-links{
    gap:1rem;
    flex-wrap:wrap;
    justify-content:center;
  }

  .section h2{
    font-size:2.5rem;
  }

}

@media(max-width:500px){

  .hero{
    padding:2rem 1.5rem;
  }

  .section{
    padding:5rem 1.5rem;
  }

  .hero h1{
    font-size:2.8rem;
  }

  .hero-text{
    font-size:1rem;
  }

  .btn{
    width:100%;
  }

}
.logo img{
  height:150px;
  width:auto;

  object-fit:contain;

  filter:
    drop-shadow(0 0 10px rgba(212,175,55,0.15));

  transition:0.3s ease;
}

.logo img:hover{
  transform:translateY(-2px);
  filter:
    drop-shadow(0 0 20px rgba(212,175,55,0.25));
}
/* =========================
   PHANTOM FORGE PORTFOLIO
========================= */

.portfolio-section{
  padding:8rem 6%;
}

.section-heading{
  max-width:760px;
  margin-bottom:4rem;
}

.section-heading h2{
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(2.4rem, 5vw, 4.5rem);
  line-height:1;
  margin-bottom:1.3rem;
}

.section-heading p{
  color:#a8a8a8;
  line-height:1.8;
  font-size:1rem;
}

.portfolio-showcase{
  display:flex;
  flex-direction:column;
  gap:2.5rem;
}

.case-study{
  position:relative;
  overflow:hidden;

  display:grid;
  grid-template-columns:0.8fr 1.4fr;
  gap:2rem;

  min-height:460px;
  padding:1.4rem;

  border-radius:32px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)),
    #070707;

  border:1px solid rgba(255,255,255,0.07);

  box-shadow:
    0 30px 90px rgba(0,0,0,0.45),
    inset 0 0 0 1px rgba(212,175,55,0.025);

  transition:0.45s ease;
}

.case-study::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 0%, rgba(212,175,55,0.08), transparent 28%),
    radial-gradient(circle at 90% 100%, rgba(212,175,55,0.045), transparent 30%);
  opacity:0.7;
  pointer-events:none;
}

.case-study:hover{
  transform:translateY(-6px);
  border-color:rgba(212,175,55,0.18);
  box-shadow:
    0 35px 100px rgba(0,0,0,0.6),
    0 0 35px rgba(212,175,55,0.045);
}

.case-copy{
  position:relative;
  z-index:2;

  display:flex;
  flex-direction:column;
  justify-content:flex-end;

  padding:2rem;
}

.case-label{
  color:#d4af37;
  text-transform:uppercase;
  letter-spacing:2.5px;
  font-size:0.68rem;
  font-weight:700;
  margin-bottom:0.9rem;
}

.case-copy h3{
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(2rem, 4vw, 3.4rem);
  line-height:1;
  margin-bottom:1rem;
}

.case-copy p{
  color:#b8b8b8;
  line-height:1.75;
  max-width:560px;
  font-size:0.98rem;
}

.case-media{
  position:relative;
  z-index:2;

  overflow:hidden;

  border-radius:24px;
  background:#101010;
  border:1px solid rgba(255,255,255,0.06);

  min-height:380px;
}

.case-media img,
.case-media video{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
  filter:brightness(0.88) contrast(1.08);
  transition:0.8s ease;
}

.case-study:hover .case-media img,
.case-study:hover .case-media video{
  transform:scale(1.025);
  filter:brightness(0.96) contrast(1.1);
}

.hero-case{
  grid-template-columns:0.65fr 1.6fr;
  min-height:540px;
}

.hero-case .case-media{
  min-height:500px;
}

.two-column{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:2.5rem;
}

.two-column .case-study{
  grid-template-columns:1fr;
  min-height:auto;
}

.two-column .case-media{
  min-height:320px;
}

.two-column .case-copy{
  padding:1.7rem 1.4rem 1.4rem;
}

.two-column .case-copy h3{
  font-size:2.1rem;
}

.video-feature{
  grid-template-columns:0.7fr 1.5fr;
  min-height:480px;
}

.video-feature .case-media{
  min-height:430px;
}

/* Better spacing between services and portfolio */
#services{
  padding-bottom:4rem;
}

#work{
  padding-top:6rem;
}

/* Mobile */
@media(max-width:1000px){

  .case-study,
  .hero-case,
  .video-feature{
    grid-template-columns:1fr;
  }

  .hero-case .case-media,
  .video-feature .case-media,
  .case-media{
    min-height:320px;
  }

  .two-column{
    grid-template-columns:1fr;
  }

}

@media(max-width:600px){

  .portfolio-section{
    padding:5rem 1.3rem;
  }

  .portfolio-showcase{
    gap:1.5rem;
  }

  .case-study{
    padding:0.9rem;
    border-radius:24px;
  }

  .case-copy{
    padding:1.3rem;
  }

  .case-media{
    border-radius:18px;
    min-height:260px;
  }

  .hero-case .case-media,
  .video-feature .case-media{
    min-height:260px;
  }

}
/* =========================
   RESPONSIVE SHOWCASE
========================= */

.responsive-section{
  padding:8rem 6%;
}

.responsive-copy{
  max-width:760px;
  margin-bottom:4rem;
}

.responsive-copy h2{
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(2.4rem, 5vw, 4.5rem);
  line-height:1;
  margin-bottom:1.2rem;
}

.responsive-copy p{
  color:#a8a8a8;
  line-height:1.8;
}

.responsive-layout{
  display:grid;
  grid-template-columns:1.5fr 0.65fr;
  gap:2rem;
  align-items:center;
}

.responsive-desktop{
  position:relative;
  overflow:hidden;

  border-radius:32px;

  background:#070707;

  border:1px solid rgba(255,255,255,0.07);

  box-shadow:
    0 30px 90px rgba(0,0,0,0.5),
    0 0 40px rgba(212,175,55,0.03);

  padding:1rem;
}

.responsive-desktop img{
  width:100%;
  display:block;

  border-radius:22px;

  object-fit:cover;

  filter:
    brightness(0.94)
    contrast(1.04);
}

.responsive-mobile-stack{
  display:flex;
  flex-direction:column;
  gap:1.5rem;
}

.mobile-card{
  position:relative;

  overflow:hidden;

  border-radius:30px;

  background:#090909;

  border:1px solid rgba(255,255,255,0.06);

  padding:0.8rem;

  box-shadow:
    0 20px 50px rgba(0,0,0,0.45),
    0 0 30px rgba(212,175,55,0.025);

  transition:0.45s ease;
}

.mobile-card:hover{
  transform:translateY(-4px);
  border-color:rgba(212,175,55,0.16);
}

.mobile-card img{
  width:100%;
  display:block;

  border-radius:22px;

  object-fit:cover;

  filter:
    brightness(0.96)
    contrast(1.04);
}

/* Better breathing room */
.responsive-section{
  margin-top:4rem;
}

/* Mobile */
@media(max-width:1000px){

  .responsive-layout{
    grid-template-columns:1fr;
  }

  .responsive-mobile-stack{
    flex-direction:row;
  }

}

@media(max-width:700px){

  .responsive-section{
    padding:5rem 1.3rem;
  }

  .responsive-mobile-stack{
    flex-direction:column;
  }

}
/* =========================
   SCROLL REVEAL ANIMATION
========================= */

/* This is the starting state before the section appears */
.reveal{
  opacity:0;
  transform:translateY(28px);
  filter:blur(8px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease,
    filter 0.9s ease;
}

/* This is the final state after the section scrolls into view */
.reveal.active{
  opacity:1;
  transform:translateY(0);
  filter:blur(0);
}
/* =========================
   AMBIENT CINEMATIC GLOW
========================= */

.ambient-background{
  position:fixed;
  inset:0;

  overflow:hidden;

  pointer-events:none;

  z-index:-2;
}

/* Shared glow styles */
.glow{
  position:absolute;

  border-radius:50%;

  filter:blur(140px);

  opacity:0.14;

  animation:floatGlow 18s ease-in-out infinite;
}

/* Top glow */
.glow-1{
  width:420px;
  height:420px;

  background:#d4af37;

  top:-120px;
  left:-80px;
}

/* Right side glow */
.glow-2{
  width:360px;
  height:360px;

  background:#8f6d16;

  top:30%;
  right:-120px;

  animation-delay:4s;
}

/* Bottom glow */
.glow-3{
  width:500px;
  height:500px;

  background:#5e4710;

  bottom:-200px;
  left:30%;

  animation-delay:8s;
}

/* Floating movement */
@keyframes floatGlow{

  0%{
    transform:
      translateY(0px)
      translateX(0px)
      scale(1);
  }

  50%{
    transform:
      translateY(-25px)
      translateX(18px)
      scale(1.06);
  }

  100%{
    transform:
      translateY(0px)
      translateX(0px)
      scale(1);
  }

}
/* =========================
   PREMIUM FOOTER
========================= */

.site-footer{
  padding:5rem 6% 2rem;
  border-top:1px solid rgba(255,255,255,0.07);
  background:linear-gradient(to top, #030303, transparent);
}

.footer-brand h2{
  font-family:'Cormorant Garamond', serif;
  color:#d4af37;
  letter-spacing:5px;
  font-size:2rem;
  margin-bottom:0.8rem;
}

.footer-brand p{
  color:#9f9f9f;
  margin-bottom:2rem;
}

.footer-links{
  display:flex;
  gap:1.5rem;
  margin-bottom:2.5rem;
}

.footer-links a{
  color:#cfcfcf;
  text-decoration:none;
  transition:0.3s ease;
}

.footer-links a:hover{
  color:#d4af37;
}

.footer-credit{
  color:#666;
  font-size:0.85rem;
}
/* =========================
   CONTACT SECTION
========================= */

.contact-section{
  padding:8rem 6%;
}

.contact-card{
  max-width:900px;
  margin:0 auto;
  text-align:center;

  padding:4rem 2rem;

  border-radius:36px;

  background:
    linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
    #070707;

  border:1px solid rgba(255,255,255,0.07);

  box-shadow:
    0 30px 90px rgba(0,0,0,0.5),
    inset 0 0 0 1px rgba(212,175,55,0.03);
}

.contact-card h2{
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(2.5rem, 6vw, 4.8rem);
  line-height:1;
  margin-bottom:1.4rem;
}

.contact-card p{
  max-width:650px;
  margin:0 auto 2.3rem;
  color:#a8a8a8;
  line-height:1.8;
}
/* =========================
   BUTTON POLISH
========================= */

.btn{
  position:relative;
  overflow:hidden;
}

.btn::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.25),
    transparent
  );
  transform:translateX(-120%);
  transition:0.6s ease;
}

.btn:hover::after{
  transform:translateX(120%);
}
/* =========================
   CUSTOM SCROLLBAR
========================= */

::-webkit-scrollbar{
  width:10px;
}

::-webkit-scrollbar-track{
  background:#050505;
}

::-webkit-scrollbar-thumb{
  background:linear-gradient(#d4af37, #6f5415);
  border-radius:999px;
  border:2px solid #050505;
}

::-webkit-scrollbar-thumb:hover{
  background:#e5c158;
}
/* =========================
   FOOTER SOCIALS
========================= */

.footer-socials{
  display:flex;
  gap:1.2rem;

  margin-bottom:2rem;
}

.footer-socials a{
  position:relative;

  color:#8f8f8f;

  text-decoration:none;

  font-size:0.95rem;

  transition:0.35s ease;
}

.footer-socials a::after{
  content:"";

  position:absolute;

  left:0;
  bottom:-4px;

  width:0%;
  height:1px;

  background:#d4af37;

  transition:0.35s ease;
}

.footer-socials a:hover{
  color:#d4af37;
}

.footer-socials a:hover::after{
  width:100%;
}
/* =========================
   FINAL PHANTOM FORGE POLISH
========================= */

.section{
  padding-top:8rem;
  padding-bottom:7rem;
}

.hero{
  min-height:92vh;
}

.hero-content{
  padding-top:7rem;
  padding-bottom:6rem;
}

.card,
.case-study,
.contact-card,
.responsive-desktop,
.mobile-card{
  backdrop-filter:blur(14px);
}

.card p,
.case-copy p,
.section-heading p,
.responsive-copy p,
.contact-card p{
  font-size:0.96rem;
  line-height:1.75;
}

.case-media img,
.case-media video{
  object-position:center top;
}

.case-study{
  max-width:1600px;
  margin-left:auto;
  margin-right:auto;
}

.portfolio-showcase{
  max-width:1700px;
  margin:0 auto;
}

.section-heading,
.responsive-copy{
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}

.section-heading p,
.responsive-copy p{
  margin-left:auto;
  margin-right:auto;
}

.card-grid{
  max-width:1500px;
  margin:0 auto;
}

.nav{
  max-width:1650px;
  margin-left:auto;
  margin-right:auto;
}

.logo img{
  max-height:58px;
}

/* Soft luxury divider */
.section::before{
  content:"";
  display:block;
  width:70px;
  height:1px;
  margin:0 auto 3rem;
  background:linear-gradient(
    to right,
    transparent,
    rgba(212,175,55,0.45),
    transparent
  );
}

/* Do not add divider to hero */
.hero::before{
  display:none;
}

/* Mobile luxury polish */
@media(max-width:700px){

  .hero{
    min-height:85vh;
  }

  .hero h1{
    font-size:5rem;
    line-height:1.05;
  }

  .hero-content{
    text-align:left;
    padding-top:5rem;
    padding-bottom:4rem;
  }

  .nav{
    position:relative;
    top:auto;
    padding:5rem;
  }

  .logo img{
    max-height:52px;
  }

  .nav-links{
    font-size:0.85rem;
  }

  .section{
    padding-top:4.5rem;
    padding-bottom:4.5rem;
  }

  .section-heading,
  .responsive-copy{
    text-align:left;
  }

  .case-copy h3{
    font-size:2.2rem;
  }

  .case-copy p{
    font-size:0.92rem;
  }

  .footer-links,
  .footer-socials{
    flex-wrap:wrap;
  }
}
/* =========================
   THE FORGE SECTION
========================= */

.forge-section{
  padding:8rem 6%;
}

.forge-grid{
  max-width:1500px;
  margin:0 auto;

  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:2rem;
}

.forge-card{
  padding:2rem;
  border-radius:28px;

  background:
    linear-gradient(145deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)),
    #070707;

  border:1px solid rgba(255,255,255,0.07);

  min-height:260px;

  display:flex;
  flex-direction:column;
  justify-content:flex-end;

  transition:0.4s ease;
}

.forge-card span{
  color:#d4af37;
  letter-spacing:2px;
  font-size:0.8rem;
  margin-bottom:auto;
}

.forge-card h3{
  font-family:'Cormorant Garamond', serif;
  font-size:2rem;
  margin-bottom:1rem;
}

.forge-card p{
  color:#a8a8a8;
  line-height:1.7;
}

.forge-card:hover{
  transform:translateY(-6px);
  border-color:rgba(212,175,55,0.18);
}

@media(max-width:900px){
  .forge-grid{
    grid-template-columns:1fr;
  }
}
.forge-grid{
  max-width:1500px;
  margin:0 auto;

  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:2rem;
}

@media(max-width:1100px){
  .forge-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

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