:root {
  --bg: #070707;
  --accent: #F5E093;
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.hero .container { max-width: none; width: 100%; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--accent);
  font-family: Inter, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER / NAV */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(6px);
  background: linear-gradient(180deg, rgba(0,0,0,0.85), rgba(0,0,0,0.2));
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 0;
  position: relative;
}

/* nav (desktop) */
.nav {
  position: absolute;
  top: calc(100% + 8px);
  left: 20px;
  right: 20px;
  width: 180px;
  background: rgba(5,5,5,0.98);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 8px 0;
  flex-direction: column;
  gap: 0;
  display: none;
  z-index: 999;
}

.nav a {
  text-decoration: none;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 20px;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.02);
}

.nav a:last-child {
  border-bottom: none;
}

.nav a:hover {
  background: rgba(255,255,255,0.08);
}

/* mobile nav toggle */
.nav-toggle {
  display: none;
}

/* hamburger icon */
.hamburger {
  display: flex;
  width: 32px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
  transition: 0.3s ease;
}

/* hamburger icon responsive */
@media (max-width: 800px) {
  .hamburger {
    display: flex;
    margin-left: 50px;
  }

}

@media (max-width: 1250px) {
  .hamburger {
    display: flex;
    margin-left: 50px;
  }

}

/* hamburger → X animation */
.nav-toggle:checked ~ .hamburger span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.nav-toggle:checked ~ .hamburger span:nth-child(2) {
  opacity: 0;
}
.nav-toggle:checked ~ .hamburger span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* show dropdown menu */
.nav-toggle:checked ~ .nav {
  display: flex;
}

/* mobile behavior */
@media (max-width: 800px) {

  .logo {
    display: none;
  }
}


/* HERO */

/* HERO SECTION — full-screen background image */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #070707;
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-image: url('images/masks/quaker.jpeg');
  background-size: cover;
  background-position: center left;
  background-repeat: no-repeat;
  z-index: 0;

  -webkit-mask-image: radial-gradient(
    ellipse 35% 85% at 55% center,
    rgba(7,7,7,1) 20%,      /* solid version of your background */
    rgba(7,7,7,0.4) 45%,    /* mid fade */
    rgba(7,7,7,0) 100%      /* transparent version of your background */
  );
  mask-image: radial-gradient(
    ellipse 35% 85% at 55% center,
    rgba(7,7,7,1) 20%,
    rgba(7,7,7,0.4) 45%,
    rgba(7,7,7,0) 100%
  );
}


.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(7,7,7,0) 0%,  /* transparent version of #070707 */
    rgba(7,7,7,1) 100% /* solid #070707 */
  );
  z-index: 1;
  pointer-events: none;
}


/* text sits above image and fade */
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
}


.hero-copy {
  margin-left: 46%;
  max-width: none;
}


.title {
  font-family: "Raleway", serif; 
  font-weight: 200; 
  font-size: 70px;
  color: var(--accent);
  margin: 0 0 12px 0;
  position: relative;
  line-height: 1;
  display: block;
  width: 100%;
  text-align: left;
}

.italic-word {
  font-style: italic;
}

.hero-title {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.25em;
}

.title-first,
.title-second {
  white-space: nowrap;
}


.tagline {
  color: var(--accent);
  margin: 0 0 12px 10px;
  padding: 0;
  display: block;
  width: 100%;
  text-align: left;
  font-family: "Source Sans 3", sans-serif; 
  font-weight: 200;
  font-size: 25px;
}

.process-descriptions {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 200; 
  font-size: 22px;
  color: var(--accent);
}

.cta {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 6px;
  border: 1px solid var(--accent);
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

/* responsive */
@media (max-width: 1262px) {
  .hero::before {
    width: 80%;
    background-position: center;
  }

  .hero::after {
    display: none;
  }

  .hero-copy {
    margin-left: 0;
    padding: 0 20px;
  }

  .title {
    font-size: 80px;
    text-align: center;
  }

  .tagline {
    font-size: 50px;
    text-align: center;
  }
}

@media (max-width: 900px) {
  .hero::before {
    width: 100%;
    background-position: center;
  }

  .hero::after {
    display: none;
  }

  .hero-copy {
    margin-left: 0;
    padding: 0 20px;
  }

  .title {
    font-size: 80px;
    text-align: center;
  }

  .tagline {
    font-size: 50px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero-heading {
    flex-direction: column;
    align-items: flex-start;
  }
  .title {
    font-size: 60px;
    text-align: center;
  }
    .tagline {
    font-size: 40px;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .hero-heading {
    flex-direction: column;
    align-items: flex-start;
  }
  .title {
    font-size: 50px;
    text-align: center;
  }
    .tagline {
    font-size: 30px;
    text-align: center;
  }
}

/* GALLERY */

.gallery-section {
  padding-top: 0;
  background: #070707;
  color: var(--accent);
}

.section-title {
  font-family: "Source Sans 3", sans-serif;
  font-size: 30px;
  color: var(--accent);
  margin-bottom: 10px;
  font-weight: 300;
  text-align: center;
  padding-bottom: 0;
}

.about-inner .section-title {
  grid-column: 1 / -1; /* span both columns */
  text-align: center;
  margin-bottom: 20px;
}

.about-inner .section-divider {
  grid-column: 1 / -1;
  width: 100%;
}

.email-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 200;
}


.email-link:hover {
  color: #ffffff;
}

.material-symbols-outlined {
  font-size: 40px;
  color: var(--accent); /* your gold accent */
}

.icon {
  width: 32px;
  height: 32px;
  background-image: url("images/icons/sculpting.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  color: var(--accent);
}

i {
  font-size: 40px;
  color: var(--accent); /* your gold accent */
}

.section-divider {
  border: 0;
  height: 1px;
  background: var(--accent);
  opacity: 0.3;
  width: 100%;
}


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

.card {
  background: #0b0b0b;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.card-link {
  display: block;
}

/* faded edge + tint */
.card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  /* VERTICAL OVAL VIGNETTE WITH FULL BLACK CORNERS */
  -webkit-mask-image: radial-gradient(
    ellipse 35% 85% at center center,
    rgba(0,0,0,1) 20%,   /* bright center */
    rgba(0,0,0,0.4) 45%, /* mid fade */
    rgba(0,0,0,0) 100%   /* edges fully transparent → reveals black background */
  );
  mask-image: radial-gradient(
    ellipse 35% 85% at center center,
    rgba(0,0,0,1) 20%,
    rgba(0,0,0,0.4) 45%,
    rgba(0,0,0,0) 100%
  );
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0) 55%, rgba(192,139,58,0.18) 100%);
  mix-blend-mode: multiply;
  border-radius: 8px;
}

figcaption {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tag {
  color: var(--accent);
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  text-align: center;
}

.click-img-txt {
  font-family: "Source Sans 3", sans-serif;
  color: var(--accent);
  text-align: center;
  margin-top: -10px;
}

.name {
  color: #fff;
  font-weight: 600;
}

@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .card img {
    height: 420px;
  }
}

/* CSS-ONLY LIGHTBOX */

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

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
}

/* show when targeted */
.lightbox.is-open {
  display: flex;
}

/* click anywhere to close */
.lightbox-close {
  position: fixed;
  inset: 0;
}

/* PROCESS */

.process {
  padding-top: 0;
  background: #0a0a0a;
  color: var(--accent);
  padding-bottom: 60px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step {
  background: #0f0f0f;
  padding: 18px;
  border-radius: 8px;
  text-align: center;
}

.icon {
  font-size: 28px;
  margin-bottom: 10px;
  color: var(--accent);
}

.step h3 {
  margin: 6px 0 8px;
  color: #fff;
}

.step p {
  font-size: 14px;
  color: var(--accent);
}

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

/* ABOUT */

.about {
  padding-top: 0;
  background: #070707;
  color: var(--accent);
}

.about-inner {
  display: flex;
  flex-direction: column;
  align-items: center;   /* centers all child elements horizontally */
  text-align: center;    /* centers inline content */
  padding-top: 0; 
  margin-top: 0;
}


.about .section-divider { margin-top: 0; }

.about .bio {
  max-width: 700px;
  margin: 0 auto;
  text-align: justify; 
}

.about .process-descriptions {
  text-align: justify;
  max-width: 700px;
}

.portrait img {
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.bio p {
  line-height: 1.6;
}

@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
  }
}

/* CONTACT */

.contact {
  padding-top: 0;
  background: #050505;
  color: var(--accent);
}

.contact-form {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.contact-form label span {
  display: block;
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.06);
  background: #0b0b0b;
  color: #fff;
}

.send {
  background: var(--accent);
  color: #0b0b0b;
  padding: 10px 14px;
  border-radius: 6px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
}

.socials {
  margin-top: 18px;
  margin-bottom: 18px;
  text-align: center;
  color: var(--accent);
}

.built-by-container {
  margin-top: 20px;
  text-align: center;
  color: var(--accent);
}

.built-by {
  color: var(--accent);
  font-weight: 200;
}

.imdb-link {
  color: var(--accent);
  transition: color .3s ease;
}

.imdb-link:hover {
  color: #ffffff;
}



