/* ===== RESET & BASE ===== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:'Manrope',system-ui,sans-serif;
  font-weight:400;
  line-height:1.6;
  color:#d4d4d4;
  background:#0a0a0a;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
ul,ol{list-style:none}
h1,h2,h3{font-family:'Cormorant',Georgia,serif;font-weight:600;line-height:1.15}

/* ===== TOKENS ===== */
:root{
  --bg:       #0a0a0a;
  --bg-card:  #141414;
  --bg-input: #1a1a1a;
  --border:   #2a2a2a;
  --text:     #d4d4d4;
  --text-dim: #888;
  --heading:  #f5f5f5;
  --accent:   #FFD600;
  --accent-hover:#FFE34D;
  --accent-text:#0a0a0a;
  --radius:   12px;
  --max-w:    1120px;
}

/* ===== GRAIN OVERLAY ===== */
.grain{
  position:fixed;inset:0;z-index:9999;pointer-events:none;opacity:.035;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat:repeat;background-size:180px;
}

/* ===== NAV ===== */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  background:rgba(10,10,10,.85);backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
}
.nav__inner{
  max-width:var(--max-w);margin:0 auto;padding:.85rem 1.5rem;
  display:flex;align-items:center;justify-content:space-between;
}
.brand{display:flex;flex-direction:column;gap:0}
.brand__mark{
  font-family:'Cormorant',Georgia,serif;font-size:1.35rem;font-weight:700;
  letter-spacing:.04em;color:var(--heading);
}
.brand__sub{font-size:.65rem;letter-spacing:.12em;text-transform:uppercase;color:var(--text-dim)}

/* ===== BUTTONS ===== */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  font-family:'Manrope',sans-serif;font-weight:600;font-size:.85rem;
  letter-spacing:.04em;text-transform:uppercase;
  border:none;border-radius:60px;cursor:pointer;transition:.25s;
}
.btn--accent{
  background:var(--accent);color:var(--accent-text);
  padding:.75rem 2rem;
}
.btn--accent:hover{background:var(--accent-hover);transform:translateY(-1px)}
.btn--ghost{
  background:transparent;color:var(--text);
  border:1px solid var(--border);padding:.6rem 1.5rem;
}
.btn--ghost:hover{border-color:var(--accent);color:var(--accent)}
.btn--block{width:100%;padding:.95rem}
.nav__cta{font-size:.75rem;padding:.55rem 1.3rem}

/* ===== HERO ===== */
.hero{
  position:relative;overflow:hidden;
  min-height:100vh;display:flex;align-items:center;justify-content:center;
  text-align:center;padding:8rem 1.5rem 5rem;
}
.hero__glow{
  position:absolute;width:600px;height:600px;border-radius:50%;
  background:radial-gradient(circle,rgba(255,214,0,.08) 0%,transparent 70%);
  top:10%;left:50%;transform:translateX(-50%);pointer-events:none;
}
.hero__inner{max-width:750px;position:relative}
.eyebrow{
  font-size:.75rem;letter-spacing:.18em;text-transform:uppercase;
  color:var(--accent);margin-bottom:1.5rem;font-weight:600;
}
.hero__title{
  font-size:clamp(2.2rem,5.5vw,3.8rem);color:var(--heading);
  margin-bottom:1.5rem;
}
.hero__title em{font-style:italic;color:var(--accent)}
.hero__lead{
  font-size:1.05rem;color:var(--text-dim);max-width:600px;
  margin:0 auto 2.5rem;line-height:1.7;
}

/* ===== SECTIONS ===== */
.section{padding:5rem 1.5rem}
.section__head{text-align:center;max-width:700px;margin:0 auto 3rem}
.tag{
  display:inline-block;font-size:.7rem;letter-spacing:.14em;
  text-transform:uppercase;color:var(--accent);font-weight:600;
  margin-bottom:.75rem;
}
.tag--accent{
  background:var(--accent);color:var(--accent-text);
  padding:.35rem 1rem;border-radius:60px;
}
.tag--light{color:var(--heading)}
.section__head h2{
  font-size:clamp(1.6rem,3.5vw,2.4rem);color:var(--heading);margin-bottom:1rem;
}
.section__lead{font-size:.95rem;color:var(--text-dim);line-height:1.7}

/* ===== ABOUT ===== */
.about__details{
  max-width:var(--max-w);margin:0 auto;
  display:grid;grid-template-columns:auto 1fr;gap:3rem;
  align-items:start;
}
.about__stats{display:flex;flex-direction:column;gap:1.5rem}
.stat{
  background:var(--bg-card);border:1px solid var(--border);
  border-radius:var(--radius);padding:1.5rem 2rem;text-align:center;
  min-width:160px;
}
.stat__num{
  display:block;font-family:'Cormorant',Georgia,serif;
  font-size:2.5rem;font-weight:700;color:var(--accent);line-height:1;
}
.stat__label{font-size:.8rem;color:var(--text-dim);margin-top:.35rem;display:block}
.about__text{font-size:.95rem;color:var(--text-dim);line-height:1.7}
.about__text p{margin-bottom:1rem}
.about__text ul{margin:.5rem 0 0 1.2rem;list-style:disc}
.about__text li{margin-bottom:.5rem}
.about__text strong{color:var(--heading)}

.about__gallery{
  max-width:var(--max-w);margin:3rem auto 0;
  display:grid;grid-template-columns:repeat(5,1fr);gap:.75rem;
}
.about__gallery img{
  border-radius:var(--radius);aspect-ratio:3/4;object-fit:cover;
  border:1px solid var(--border);width:100%;
  transition:transform .3s;
}
.about__gallery img:hover{transform:scale(1.03)}

/* ===== CARDS ===== */
.cards{
  max-width:var(--max-w);margin:0 auto;
  display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:1.25rem;
}
.card{
  background:var(--bg-card);border:1px solid var(--border);
  border-radius:var(--radius);padding:2rem 1.5rem;
  transition:border-color .3s,transform .3s;
}
.card:hover{border-color:var(--accent);transform:translateY(-3px)}
.card__ico{color:var(--accent);font-size:1.2rem;display:block;margin-bottom:1rem}
.card h3{font-size:1.15rem;color:var(--heading);margin-bottom:.5rem}
.card p{font-size:.88rem;color:var(--text-dim);line-height:1.6}

/* ===== EXAMPLES ===== */
.examples__group{
  max-width:var(--max-w);margin:0 auto 3.5rem;
}
.examples__label{margin-bottom:1.5rem}
.examples__label h3{
  font-size:1.4rem;color:var(--accent);margin-bottom:.5rem;
}
.examples__label p{font-size:.9rem;color:var(--text-dim);max-width:650px;line-height:1.6}
.examples__grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1rem;
}
.examples__grid--wide{
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
}
.examples__grid li{
  position:relative;overflow:hidden;border-radius:var(--radius);
  aspect-ratio:4/3;background:var(--bg-card);border:1px solid var(--border);
}
.examples__grid img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .4s;
}
.examples__grid li:hover img{transform:scale(1.05)}
.examples__ph{
  position:absolute;inset:0;display:flex;align-items:center;justify-content:center;
  font-size:.85rem;color:var(--text-dim);display:none;
}
.examples__grid li.is-empty .examples__ph{display:flex}
.examples__grid li.is-empty{background:var(--bg-card)}

/* ===== EXPECT ===== */
.expect{padding-bottom:2rem}

/* ===== ACCORDION ===== */
.accordion{max-width:var(--max-w);margin:0 auto}
.acc{
  border:1px solid var(--border);border-radius:var(--radius);
  margin-bottom:.75rem;overflow:hidden;
  transition:border-color .3s;
}
.acc[open]{border-color:rgba(255,214,0,.3)}
.acc summary{
  display:flex;align-items:center;gap:1rem;
  padding:1.25rem 1.5rem;cursor:pointer;
  font-family:'Manrope',sans-serif;font-weight:600;font-size:.95rem;
  color:var(--heading);list-style:none;
  transition:background .2s;
}
.acc summary::-webkit-details-marker{display:none}
.acc summary::after{
  content:'+';margin-left:auto;font-size:1.3rem;
  color:var(--accent);transition:transform .3s;font-weight:300;
}
.acc[open] summary::after{content:'−'}
.acc summary:hover{background:rgba(255,255,255,.02)}
.acc__num{
  display:inline-flex;align-items:center;justify-content:center;
  width:32px;height:32px;border-radius:50%;
  background:var(--accent);color:var(--accent-text);
  font-size:.7rem;font-weight:700;flex-shrink:0;
}
.acc__body{
  padding:0 1.5rem 1.5rem 4.5rem;
  font-size:.9rem;color:var(--text-dim);line-height:1.7;
}
.acc__body p{margin-bottom:.75rem}
.acc__body ul,.acc__body ol{margin:.5rem 0 .75rem 1.2rem}
.acc__body ul{list-style:disc}
.acc__body ol{list-style:decimal}
.acc__body li{margin-bottom:.4rem}
.acc__body strong{color:var(--heading)}
.acc__body a{color:var(--accent);text-decoration:underline}

/* ===== FORM ===== */
.apply{
  background:linear-gradient(180deg,var(--bg) 0%,#111 100%);
}
.apply__inner{max-width:700px;margin:0 auto}
.form__grid{display:grid;gap:1.25rem;margin-bottom:1.5rem}
.field label{
  display:block;font-size:.85rem;font-weight:500;
  color:var(--heading);margin-bottom:.4rem;
}
.field label span{color:var(--accent)}
.field label em{font-weight:400;color:var(--text-dim)}
.field input,.field textarea{
  width:100%;padding:.8rem 1rem;
  background:var(--bg-input);border:1px solid var(--border);
  border-radius:8px;color:var(--text);font-family:inherit;
  font-size:.9rem;transition:border-color .2s;
}
.field input:focus,.field textarea:focus{
  outline:none;border-color:var(--accent);
}
.field input::placeholder,.field textarea::placeholder{color:#555}

/* honeypot */
.hp{position:absolute;left:-9999px;opacity:0;height:0;width:0}

/* dropzone */
.dropzone{
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:.5rem;padding:2.5rem 1rem;cursor:pointer;
  border:2px dashed var(--border);border-radius:var(--radius);
  transition:border-color .2s,background .2s;
}
.dropzone:hover,.dropzone.drag-over{
  border-color:var(--accent);background:rgba(255,214,0,.03);
}
.dropzone input{position:absolute;opacity:0;pointer-events:none}
.dropzone__ico{font-size:1.8rem;color:var(--accent)}
.dropzone__txt{font-size:.9rem;color:var(--text)}
.dropzone__hint{font-size:.75rem;color:var(--text-dim)}

.previews{
  display:flex;flex-wrap:wrap;gap:.5rem;margin-top:.75rem;
}
.previews li{
  position:relative;width:72px;height:72px;border-radius:8px;
  overflow:hidden;border:1px solid var(--border);
}
.previews img{width:100%;height:100%;object-fit:cover}
.previews .remove{
  position:absolute;top:2px;right:2px;width:20px;height:20px;
  background:rgba(0,0,0,.7);color:#fff;border:none;border-radius:50%;
  font-size:.7rem;cursor:pointer;display:flex;align-items:center;justify-content:center;
  line-height:1;
}

/* ack */
.ack{
  display:flex;gap:.75rem;font-size:.82rem;color:var(--text-dim);
  margin-bottom:1.5rem;cursor:pointer;line-height:1.5;
  align-items:flex-start;
}
.ack input{
  flex-shrink:0;margin-top:3px;width:18px;height:18px;
  accent-color:var(--accent);
}
.ack a{color:var(--accent);text-decoration:underline}

.form__privacy{font-size:.75rem;color:var(--text-dim);text-align:center;margin-top:.75rem}
.form__status{text-align:center;margin-top:1rem;font-size:.9rem;min-height:1.4em}
.form__status.ok{color:#4ade80}
.form__status.err{color:#f87171}
.form__status.sending{color:var(--accent)}

/* ===== FOOTER ===== */
.footer{
  text-align:center;padding:3rem 1.5rem;
  border-top:1px solid var(--border);
}
.footer__brand{
  font-family:'Cormorant',Georgia,serif;font-size:1.6rem;
  font-weight:700;color:var(--heading);letter-spacing:.04em;
}
.footer__note{font-size:.75rem;color:var(--text-dim);margin:.35rem 0 1rem}
.footer__ig{
  display:inline-flex;align-items:center;gap:.4rem;
  font-size:.8rem;color:var(--text-dim);transition:color .2s;
}
.footer__ig:hover{color:var(--accent)}

/* ===== LIGHTBOX ===== */
.lightbox{
  position:fixed;inset:0;z-index:10000;
  background:rgba(0,0,0,.92);backdrop-filter:blur(8px);
  display:flex;align-items:center;justify-content:center;
  opacity:0;visibility:hidden;transition:opacity .3s,visibility .3s;
}
.lightbox.is-open{opacity:1;visibility:visible}
.lightbox__img{
  max-width:90vw;max-height:85vh;object-fit:contain;
  border-radius:8px;
  transform:scale(.95);transition:transform .3s;
}
.lightbox.is-open .lightbox__img{transform:scale(1)}
.lightbox__close{
  position:absolute;top:1.2rem;right:1.5rem;
  background:none;border:none;color:#fff;font-size:2rem;
  cursor:pointer;opacity:.7;transition:opacity .2s;
  width:44px;height:44px;display:flex;align-items:center;justify-content:center;
  z-index:2;
}
.lightbox__close:hover{opacity:1}
.lightbox__nav{
  position:absolute;top:50%;transform:translateY(-50%);
  background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.15);
  color:#fff;font-size:1.5rem;width:48px;height:48px;
  border-radius:50%;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:background .2s;z-index:2;
}
.lightbox__nav:hover{background:rgba(255,214,0,.25)}
.lightbox__nav--prev{left:1rem}
.lightbox__nav--next{right:1rem}
.lightbox__counter{
  position:absolute;bottom:1.5rem;left:50%;transform:translateX(-50%);
  font-size:.85rem;color:rgba(255,255,255,.6);
  font-family:'Manrope',sans-serif;
}

/* clickable gallery images */
.about__gallery img,
.examples__grid img{cursor:pointer}

/* ===== REVEAL ANIMATION ===== */
.reveal{opacity:0;transform:translateY(24px);transition:opacity .7s,transform .7s}
.reveal.is-visible{opacity:1;transform:none}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
  .about__details{grid-template-columns:1fr}
  .about__stats{flex-direction:row;justify-content:center}
  .about__gallery{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:640px){
  .hero{min-height:auto;padding:7rem 1.25rem 3.5rem}
  .hero__title{font-size:1.8rem}
  .section{padding:3.5rem 1.25rem}
  .about__stats{flex-direction:column;align-items:center}
  .about__gallery{grid-template-columns:repeat(2,1fr)}
  .about__gallery img:last-child{display:none}
  .cards{grid-template-columns:1fr}
  .examples__grid{grid-template-columns:repeat(2,1fr)}
  .acc__body{padding-left:1.5rem}
  .nav__cta{display:none}
}
