:root{
  --bg: #0b0a07;
  --paper: #15120b;
  --ink: #f6e9c8;
  --muted: rgba(246, 233, 200, .75);
  --gold: #d7b36a;
  --gold2:#b98a2f;
  --red: #7a1f17;
  --shadow: rgba(0,0,0,.55);

  --radius: 18px;
  --border: rgba(215,179,106,.35);
  --border2: rgba(215,179,106,.65);

  --cinzel: "Cinzel", serif;
  --type: "Special Elite", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(1000px 600px at 50% -10%, rgba(215,179,106,.22), transparent 60%),
    radial-gradient(900px 600px at 0% 30%, rgba(122,31,23,.18), transparent 55%),
    radial-gradient(900px 600px at 100% 35%, rgba(122,31,23,.12), transparent 60%),
    linear-gradient(180deg, #070604, var(--bg));
  font-family: var(--type);
  line-height: 1.55;
}

/* soft spotlight overlay */
.spotlight{
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(800px 500px at 50% 10%, rgba(255,245,220,.08), transparent 60%),
    radial-gradient(700px 480px at 20% 0%, rgba(255,245,220,.06), transparent 65%),
    radial-gradient(700px 480px at 80% 0%, rgba(255,245,220,.06), transparent 65%);
  mix-blend-mode: screen;
  opacity: .9;
}

/* Marquee header */
.marquee{
  position: sticky;
  top: 0;
  z-index: 999;
  background: linear-gradient(180deg, rgba(18,14,8,.95), rgba(11,10,7,.88));
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.marquee-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 18px 14px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
  align-items: center;
}

.brand .badge{
  display: inline-block;
  font-family: var(--cinzel);
  letter-spacing: .25em;
  font-weight: 800;
  font-size: 12px;
  color: #120d07;
  background: linear-gradient(90deg, var(--gold), #f0d59a, var(--gold2));
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: 0 10px 20px var(--shadow);
}

.title{
  margin: 10px 0 0;
  font-family: var(--cinzel);
  letter-spacing: .08em;
  font-weight: 800;
  font-size: clamp(22px, 3.2vw, 34px);
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(0,0,0,.5);
}

.subtitle{
  margin: 4px 0 0;
  color: var(--muted);
  letter-spacing: .12em;
  font-size: 12px;
  text-transform: uppercase;
}

.nav{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.nav a{
  color: var(--ink);
  text-decoration: none;
  font-family: var(--cinzel);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .15s ease, border-color .15s ease, background .15s ease, color .15s ease;
}
.nav a:hover{
  border-color: var(--border2);
  background: rgba(215,179,106,.10);
  transform: translateY(-1px);
  color: #fff4d6;
}

/* Layout helpers */
main{
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px 18px 70px;
}
.section{
  margin-top: 44px;
}
.section-head h3{
  margin: 0;
  font-family: var(--cinzel);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 20px;
}
.section-sub{
  margin: 8px 0 0;
  color: var(--muted);
  max-width: 70ch;
}
.grid{
  margin-top: 18px;
  display: grid;
  gap: 16px;
}
.grid.two{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three{ grid-template-columns: repeat(3, minmax(0, 1fr)); }

@media (max-width: 860px){
  .marquee-inner{ grid-template-columns: 1fr; }
  .nav{ justify-content: flex-start; }
  .grid.two, .grid.three{ grid-template-columns: 1fr; }
}

/* Hero */
.hero{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 900px){
  .hero{ grid-template-columns: 1fr; }
}

.kicker{
  margin: 0 0 10px;
  font-family: var(--cinzel);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(215,179,106,.95);
}

.hero-title{
  margin: 0;
  font-family: var(--cinzel);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: clamp(28px, 4.6vw, 46px);
  line-height: 1.08;
}
.hero-title span{
  color: #fff0c9;
  text-shadow: 0 10px 24px rgba(215,179,106,.12);
}
.hero-text{
  margin: 14px 0 0;
  color: var(--muted);
  max-width: 60ch;
}

.cta-row{
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn{
  display: inline-block;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--border2);
  background: rgba(215,179,106,.08);
  color: var(--ink);
  text-decoration: none;
  font-family: var(--cinzel);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(215,179,106,.14);
  border-color: rgba(240,213,154,.95);
}
.btn.primary{
  background: linear-gradient(90deg, var(--gold2), var(--gold), #f1d7a1);
  color: #1a1207;
  border-color: rgba(240,213,154,.9);
  box-shadow: 0 14px 30px rgba(0,0,0,.4);
}

.meta{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
@media (max-width: 700px){
  .meta{ grid-template-columns: 1fr; }
}

.meta-card{
  border: 1px solid var(--border);
  background: rgba(21,18,11,.55);
  border-radius: var(--radius);
  padding: 12px 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
.meta-label{
  margin: 0;
  font-family: var(--cinzel);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(215,179,106,.95);
}
.meta-value{
  margin: 6px 0 0;
  color: #fff3d6;
}

/* Poster */
.poster-frame{
  height: 100%;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(240,213,154,.55);
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(215,179,106,.12), transparent 60%),
    linear-gradient(180deg, rgba(21,18,11,.88), rgba(11,10,7,.88));
  box-shadow: 0 24px 60px rgba(0,0,0,.55);
  overflow: hidden;
  position: relative;
}

.poster-frame::before{
  content:"";
  position:absolute;
  inset: 10px;
  border-radius: calc(var(--radius) + 2px);
  border: 1px dashed rgba(240,213,154,.35);
  pointer-events:none;
}

.poster-top, .poster-bottom{
  padding: 14px 16px;
}
.poster-rating{
  margin: 0;
  color: rgba(240,213,154,.95);
  letter-spacing: .18em;
}
.poster-tag{
  margin: 6px 0 0;
  font-family: var(--cinzel);
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--muted);
}

.poster-art{
  height: 240px;
  margin: 0 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(215,179,106,.30);
  background:
    radial-gradient(400px 240px at 30% 30%, rgba(215,179,106,.18), transparent 60%),
    radial-gradient(520px 280px at 80% 40%, rgba(122,31,23,.16), transparent 55%),
    linear-gradient(180deg, rgba(9,8,5,.7), rgba(20,17,10,.7));
  position: relative;
  overflow: hidden;
}

.film-grain{
  position: absolute;
  inset: -40px;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.03) 0 1px, transparent 1px 6px),
    repeating-linear-gradient(0deg, rgba(0,0,0,.12) 0 1px, transparent 1px 7px);
  opacity: .35;
  transform: rotate(2deg);
  pointer-events: none;
}

/* simple “reels” */
.reel{
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  border: 2px solid rgba(240,213,154,.55);
  left: 18px;
  bottom: 18px;
  box-shadow: inset 0 0 0 10px rgba(0,0,0,.25);
}
.reel::before, .reel::after{
  content:"";
  position:absolute;
  inset: 22px;
  border-radius: 999px;
  border: 2px solid rgba(240,213,154,.45);
}
.reel::after{
  inset: 46px;
  border-color: rgba(240,213,154,.35);
}
.reel.small{
  width: 86px;
  height: 86px;
  left: auto;
  right: 18px;
  bottom: 34px;
  opacity: .9;
}
.reel.tiny{
  width: 58px;
  height: 58px;
  left: auto;
  right: 44px;
  top: 22px;
  opacity: .55;
}

.poster-line{
  margin: 6px 0 0;
  color: var(--muted);
}

/* Cards */
.card{
  border: 1px solid var(--border);
  background: rgba(21,18,11,.58);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 16px 38px rgba(0,0,0,.28);
  position: relative;
}

.card h4{
  margin: 0 0 8px;
  font-family: var(--cinzel);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.muted{ color: var(--muted); }
.tiny{ font-size: 12px; }

.bullets{
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(246,233,200,.85);
}
.bullets li{ margin: 6px 0; }

/* Tags */
.tags{
  list-style: none;
  padding: 0;
  margin: 12px 0 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tags li{
  border: 1px solid rgba(240,213,154,.38);
  background: rgba(215,179,106,.10);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
}

/* Filmstrip sections */
.filmstrip{
  position: relative;
  padding: 18px 0 0;
}
.filmstrip::before,
.filmstrip::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  height: 14px;
  border-radius: 10px;
  opacity: .9;
  background:
    linear-gradient(90deg, rgba(215,179,106,.18), rgba(215,179,106,.05)),
    repeating-linear-gradient(90deg, rgba(0,0,0,.55) 0 18px, transparent 18px 34px);
  border: 1px solid rgba(215,179,106,.18);
}
.filmstrip::before{ top: 0; }
.filmstrip::after{ bottom: -18px; }

/* Timeline */
.timeline{
  margin-top: 18px;
  display: grid;
  gap: 14px;
}
.event{
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
}
.event-dot{
  width: 14px;
  height: 14px;
  border-radius: 999px;
  margin-top: 6px;
  background: linear-gradient(180deg, var(--gold), var(--gold2));
  box-shadow: 0 10px 22px rgba(0,0,0,.45);
}
.event-meta{
  margin: 6px 0 10px;
  color: rgba(215,179,106,.9);
  font-family: var(--cinzel);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
}

/* Project cards */
.project-top{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}
.project-type{
  margin: 0;
  font-family: var(--cinzel);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(215,179,106,.95);
}

/* Contact */
.links{
  margin: 12px 0 0;
  padding-left: 18px;
}
.links a{
  color: #fff0c9;
  text-decoration: none;
  border-bottom: 1px dashed rgba(240,213,154,.55);
}
.links a:hover{
  border-bottom-style: solid;
}

.form{
  display: grid;
  gap: 10px;
  margin-top: 10px;
}
label span{
  display: block;
  font-family: var(--cinzel);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 6px;
  color: rgba(215,179,106,.95);
}
input, textarea{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(240,213,154,.35);
  background: rgba(8,7,4,.55);
  color: var(--ink);
  padding: 11px 12px;
  outline: none;
}
input:focus, textarea:focus{
  border-color: rgba(240,213,154,.8);
  box-shadow: 0 0 0 4px rgba(215,179,106,.12);
}

/* Footer */
.footer{
  border-top: 1px solid rgba(215,179,106,.25);
  padding: 20px 18px;
  color: var(--muted);
  text-align: center;
  background: rgba(10,9,6,.65);
}

/*Style Change*/
footer #stylechange{
    position:fixed;
    bottom:10px;
    left: 10px;
    width: 100px;
    
    z-index: 100;
}
footer #stylechange img{
    width: 100%;
    height: 100%;
    text-align: center;
    align-self: center;
    
    
}

footer #stylechange button{
    text-align: center;
    border-radius: 100%;
    background-color: rgb(225, 219, 219);
}
