/* ====================================================================
   Studio Zalktis — styles
   Palette: deep ink background, warm amber accent, zalktis-green hint.
   ==================================================================== */

:root {
  --ink:        #0e0f12;
  --ink-2:      #15171c;
  --ink-3:      #1c1f26;
  --line:       rgba(255,255,255,0.10);
  --line-2:     rgba(255,255,255,0.18);
  --text:       #ece9e2;
  --text-soft:  #a9a59b;
  --text-dim:   #76736b;
  --amber:      #e9a13b;
  --amber-soft: #f0c074;
  --green:      #5dcaa5;
  --maxw:       1120px;
  --font-disp:  "Fraunces", Georgia, serif;
  --font-body:  "Inter", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

em { font-style: italic; }

::selection { background: var(--amber); color: var(--ink); }

/* ---------------------------- NAV ---------------------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem clamp(1.2rem, 4vw, 3rem);
  background: rgba(14,15,18,0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__brand {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-disp); font-weight: 500; font-size: 1.05rem;
  letter-spacing: .01em;
}
.nav__mark { color: var(--green); display: flex; }
.nav__links { display: flex; gap: clamp(1rem, 3vw, 2rem); font-size: .92rem; color: var(--text-soft); }
.nav__links a { transition: color .2s; }
.nav__links a:hover { color: var(--text); }

/* ---------------------------- HERO ---------------------------- */
.hero {
  position: relative;
  padding: clamp(5rem, 14vh, 9rem) clamp(1.2rem, 4vw, 3rem) clamp(4rem, 10vh, 7rem);
  overflow: hidden;
}
.hero__inner { max-width: var(--maxw); margin: 0 auto; position: relative; z-index: 2; }
.hero__eyebrow {
  font-size: .82rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 1.4rem;
}
.hero__title {
  font-family: var(--font-disp); font-weight: 400;
  font-size: clamp(2.5rem, 7vw, 5rem); line-height: 1.04;
  letter-spacing: -0.02em; margin-bottom: 1.6rem; max-width: none;
}
.hero__title em { color: var(--amber-soft); }
.hero__lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--text-soft);
  max-width: 56ch; margin-bottom: 2.4rem;
}
.hero__lede strong { color: var(--text); font-weight: 500; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__glow {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(40rem 28rem at 78% -8%, rgba(233,161,59,0.16), transparent 60%),
    radial-gradient(34rem 26rem at 6% 16%, rgba(93,202,165,0.10), transparent 60%);
}

/* ---------------------------- BUTTONS ---------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .8rem 1.5rem; border-radius: 999px;
  font-size: .95rem; font-weight: 500; letter-spacing: .01em;
  border: 1px solid transparent; transition: transform .15s, background .2s, border-color .2s, color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--amber); color: var(--ink); }
.btn--primary:hover { background: var(--amber-soft); }
.btn--ghost { border-color: var(--line-2); color: var(--text); }
.btn--ghost:hover { border-color: var(--amber); color: var(--amber-soft); }

/* ---------------------------- SECTIONS ---------------------------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(3.5rem, 8vh, 6rem) clamp(1.2rem, 4vw, 3rem); }
.section__head { margin-bottom: clamp(2rem, 4vh, 3rem); }
.section__title { font-family: var(--font-disp); font-weight: 400; font-size: clamp(1.9rem, 4vw, 2.8rem); letter-spacing: -0.01em; }
.section__sub { color: var(--text-soft); margin-top: .6rem; font-size: 1.05rem; }

/* ---------------------------- PROJECTS ---------------------------- */
.projects { display: grid; gap: clamp(1.5rem, 3vw, 2.4rem); }
@media (min-width: 760px) { .projects { grid-template-columns: repeat(2, 1fr); } }

.project {
  display: flex; flex-direction: column;
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: 18px; overflow: hidden;
  transition: transform .25s, border-color .25s;
}
.project:hover { transform: translateY(-4px); border-color: var(--line-2); }
.project__media { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--ink-3); }
.project__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.project:hover .project__media img { transform: scale(1.04); }

.project__media--art { display: flex; }
.art-card {
  width: 100%; display: flex; flex-direction: column; justify-content: center; gap: .6rem;
  padding: 2rem; background:
    radial-gradient(20rem 14rem at 80% 10%, rgba(93,202,165,0.18), transparent 60%),
    linear-gradient(135deg, #181b22, #23272f);
}
.art-card__kicker { font-size: .78rem; letter-spacing: .25em; text-transform: uppercase; color: var(--green); }
.art-card__title { font-family: var(--font-disp); font-size: clamp(1.6rem, 3vw, 2.1rem); line-height: 1.1; color: var(--text); }

.project__body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.project__tag { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--amber); margin-bottom: .6rem; }
.project__title { font-family: var(--font-disp); font-weight: 500; font-size: 1.45rem; margin-bottom: .55rem; line-height: 1.15; }
.project__desc { color: var(--text-soft); font-size: 1rem; flex: 1; }
.project__links { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: 1.2rem; }
.project__links a { font-size: .92rem; font-weight: 500; color: var(--text); border-bottom: 1px solid var(--line-2); padding-bottom: 2px; transition: color .2s, border-color .2s; }
.project__links a:hover { color: var(--amber-soft); border-color: var(--amber); }

/* ---------------------------- VIDEOS ---------------------------- */
.videos { display: grid; gap: clamp(1rem, 2vw, 1.6rem); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 680px) { .videos { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .videos { grid-template-columns: repeat(4, 1fr); } }

.video { display: flex; flex-direction: column; gap: .65rem; }
.video__thumb { position: relative; aspect-ratio: 16 / 9; border-radius: 12px; overflow: hidden; background: var(--ink-3); border: 1px solid var(--line); }
.video__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
.video:hover .video__thumb img { transform: scale(1.06); }
.video__play {
  position: absolute; inset: 0; margin: auto; width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(14,15,18,0.55); color: #fff; border-radius: 50%;
  font-size: .85rem; padding-left: 3px; backdrop-filter: blur(2px);
  opacity: 0; transition: opacity .25s, transform .25s; transform: scale(.8);
}
.video:hover .video__play { opacity: 1; transform: scale(1); }
.video__label { font-size: .98rem; font-weight: 500; color: var(--text); line-height: 1.3; }
.video:hover .video__label { color: var(--amber-soft); }

.films__more { margin-top: clamp(2rem, 4vh, 3rem); display: flex; justify-content: center; }

/* ---------------------------- ABOUT ---------------------------- */
.section--about { border-top: 1px solid var(--line); }
.about { max-width: 68ch; }
.about p { color: var(--text-soft); font-size: 1.1rem; margin-top: 1.2rem; }
.about em { color: var(--green); font-style: italic; }
.about__contact { margin-top: 1.8rem; }
.about__contact a { color: var(--amber-soft); border-bottom: 1px solid var(--amber); padding-bottom: 1px; }

/* ---------------------------- FOOTER ---------------------------- */
.footer { border-top: 1px solid var(--line); }
.footer__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 2rem clamp(1.2rem, 4vw, 3rem);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: .9rem; color: var(--text-dim);
}
.footer__links { display: flex; gap: 1.4rem; }
.footer__links a:hover { color: var(--amber-soft); }

/* ---------------------------- REVEAL ANIMATION ---------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
