/* ── Custom Fonts ── */
@font-face {
  font-family: "AngelGlyphs";
  src: url("images/AngelGlyphs.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}


/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  background-color: #ffffff;
  color: #1a3050;
  line-height: 1.6;
}

h1, h2, h3, .nav-logo, .hero-label, .section-label, .btn, .nav-links a {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

/* ── Nav ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
  background-color: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #c8d8ec;
}

.nav-logo {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #78A2D2;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  color: #4a6080;
  transition: color 0.2s;
}

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

/* ── Hero ── */
#hero {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  padding: 6rem 8% 2rem;
  background-color: #78A2D2;
  gap: 0.5rem;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.hero-video img {
  width: 104%;
  display: block;
}

.hero-label {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1rem;
}

.hero-name {
  font-family: "Inter", sans-serif;
  font-size: clamp(2.1rem, 4.5vw, 3.3rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.hero-intro {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #4a6080;
  max-width: 480px;
  line-height: 1.7;
}

.hero-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin-top: 0.75rem;
  padding: 0;
}

.hero-nav a {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: #ffffff;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.hero-nav a:hover {
  opacity: 0.7;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 2px solid #78A2D2;
  color: #78A2D2;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s;
}

.btn:hover {
  background: #78A2D2;
  color: #fff;
}

/* ── Sections ── */
section {
  padding: 3rem 10%;
}

.section-label {
  font-size: 1.05rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #78A2D2;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: "Inter", sans-serif;
  font-size: clamp(2.34rem, 5.2vw, 3.64rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* ── Lightbox Process Section ── */
.lightbox-process {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #d0dff0;
}

.lightbox-process-title {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #78A2D2;
  margin-bottom: 1.5rem;
}

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

.lp-step {
  border-top: 2px solid #78A2D2;
  padding-top: 1rem;
}

.lp-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  margin-bottom: 1rem;
  background: #ffffff;
}

.lp-number {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 2.7rem;
  font-weight: 800;
  color: #ffffff;
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.lp-title {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.lp-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.82rem;
  color: #ffffff;
  line-height: 1.6;
}

.img-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}

.img-wrap img {
  width: 100%;
  display: block;
  border-radius: 6px;
}

.img-link-btn {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border: 2px solid #ffffff;
  color: #ffffff;
  border-radius: 4px;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}

.img-link-btn:hover {
  background: #ffffff;
  color: #78A2D2;
}

.lp-btn {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.5rem 1.2rem;
  border: 2px solid #ffffff;
  color: #ffffff;
  border-radius: 4px;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}

.lp-btn:hover {
  background: #ffffff;
  color: #78A2D2;
}

/* ── My Process ── */
#process {
  background-color: #ffffff;
}

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

.process-step {
  border-top: 2px solid #78A2D2;
  padding-top: 1.5rem;
}

.process-number {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #78A2D2;
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 1rem;
}

.process-title {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #1a3050;
  margin-bottom: 0.75rem;
}

.process-desc {
  font-size: 0.9rem;
  color: #4a6080;
  line-height: 1.7;
}

/* ── About ── */
#about {
  background-color: #78A2D2;
}

#about .section-label,
#about .about-hello {
  color: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10rem;
  align-items: center;
}

.about-hello-wrap {
  width: 100%;
  max-width: 480px;
  overflow: hidden;
  height: 120px;
  margin-bottom: 1.5rem;
}

.about-hello-gif {
  width: 100%;
  display: block;
}

.about-hello {
  font-family: "Inter", sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 800;
  color: #1a3050;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.about-bio {
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-visual {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1 / 1;
}

.carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.carousel-slide.active {
  opacity: 1;
}


/* ── Campaigns ── */
#campaigns {
  background-color: #ffffff;
}

.campaigns-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.campaign-card {
  border: 1px solid #c8d8ec;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
}

.campaign-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(120, 162, 210, 0.15);
}

.campaign-image {
  width: 100%;
  display: block;
  display: block;
}

.campaign-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.campaign-three-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.campaign-overview-title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1rem;
}

.campaign-overview-text {
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  color: #ffffff;
  line-height: 1.8;
}

.section-sublabel {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  color: #78A2D2;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* ── Projects ── */
#projects {
  background-color: #ffffff;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ── Lightbox ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.9);
  overflow-y: auto;
  padding: 2rem 1rem;
}

.lightbox.open {
  display: block;
}

.lightbox-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.lightbox-close {
  position: sticky;
  top: 0;
  float: right;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  z-index: 10;
}

.lightbox-close:hover {
  color: #1a3050;
}

.lightbox-title {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: #ffffff;
  padding-top: 0.5rem;
}

.lightbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.lightbox-grid.cols-1 {
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.lightbox-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.lightbox-grid.cols-2 .img-wrap:nth-child(1) {
  grid-column: span 2;
}

/* Misc custom layout */
.lightbox-grid.cols-misc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

.lightbox-grid.cols-misc img {
  width: 100%;
  display: block;
  border-radius: 6px;
  object-fit: cover;
}

/* Amplify paddles — full width */
.lightbox-grid.cols-misc .img-wrap:nth-child(3) {
  grid-column: span 2;
}

/* Boxes — side by side, white background */
.lightbox-grid.cols-misc .img-wrap:nth-child(4) img,
.lightbox-grid.cols-misc .img-wrap:nth-child(5) img {
  object-fit: contain;
  background: #ffffff;
}

/* Tattoos — full width, bottom */
.lightbox-grid.cols-misc .img-wrap:nth-child(6) {
  grid-column: span 2;
}

.lightbox-grid.cols-misc .img-wrap:nth-child(6) img {
  object-fit: contain;
  background: #ffffff;
}

.lightbox-grid img {
  width: 100%;
  border-radius: 6px;
  display: block;
  object-fit: cover;
}

.lightbox-grid.cols-2 img {
  object-fit: contain;
  max-height: none;
  background: #ffffff;
}

.lightbox-grid.white-bg img {
  background: #ffffff;
}

.card {
  background: #ffffff;
  border: 1px solid #c8d8ec;
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(120, 162, 210, 0.15);
}

.card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 0.6rem 1rem;
  background-color: #78A2D2;
}

.card-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0;
  color: #ffffff;
}

.campaign-card-label {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #4a6080;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.card-desc {
  font-size: 0.88rem;
  color: #4a6080;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
}

.card-tags li {
  font-size: 0.75rem;
  color: #78A2D2;
  background: rgba(120, 162, 210, 0.1);
  border: 1px solid rgba(120, 162, 210, 0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

/* ── Contact ── */
#contact {
  background-color: #ffffff;
  text-align: center;
}

#contact .section-label,
#contact .section-title {
  text-align: center;
}

.contact-sub {
  color: #4a6080;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.contact-email {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
  color: #78A2D2;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}

.contact-email:hover {
  border-color: #78A2D2;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
}

.social-links a {
  font-size: 0.85rem;
  color: #4a6080;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.social-links a:hover {
  color: #1a3050;
}

/* ── Footer ── */
footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.8rem;
  color: #1a3050;
  border-top: 1px solid #c8d8ec;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  nav {
    padding: 1rem 5%;
  }

  .nav-links {
    gap: 1.2rem;
  }

  #hero {
    padding: 5rem 6% 2rem;
  }

  section {
    padding: 4rem 6%;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-visual {
    max-width: 320px;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .campaigns-grid {
    grid-template-columns: 1fr;
  }

  .lightbox-grid {
    grid-template-columns: 1fr 1fr;
  }
}
