/* ============================================
   SHEN KAI — Inner Pages Stylesheet (White Theme)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Cormorant+SC:wght@300;400;500;600;700&family=Playfair+Display+SC:wght@400;700&display=swap');

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

html { scroll-behavior: smooth; }

body {
  background: #ffffff;
  color: #000000;
  font-family: 'Cormorant SC', Georgia, serif;
  -webkit-font-smoothing: antialiased;
}

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

/* ============================================
   SITE HEADER / NAV
   ============================================ */

.site-header {
  text-align: center;
  padding: 1.8rem 2rem 0;
  background: #fff;
}

.site-title {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 1.1rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.8rem;
  list-style: none;
  padding-bottom: 1.2rem;
  flex-wrap: wrap;
}

.site-nav a {
  font-family: 'Playfair Display SC', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: normal;
  color: #000;
  transition: opacity 0.2s;
}

.site-nav a:hover { opacity: 0.6; }

.site-nav a.active {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Dropdown — click-based so menu stays open when moving mouse to items */
.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
  font-family: 'Playfair Display SC', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: normal;
  color: #000;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: opacity 0.2s;
}

.nav-dropdown-toggle:hover { opacity: 0.6; }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #e0e0e0;
  min-width: 160px;
  padding: 0.4rem 0;
  z-index: 200;
}

.nav-dropdown-menu.open { display: block; }

.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.4rem;
  font-family: 'Playfair Display SC', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  transition: background 0.15s;
}

.nav-dropdown-menu a:hover { background: #f5f5f5; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  position: absolute;
  right: 1.5rem;
  top: 1.8rem;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #000;
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: 'Playfair Display SC', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
}

.mobile-sub-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  margin-top: 0.5rem;
}

.mobile-sub-links a {
  font-family: 'Playfair Display SC', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #000;
}

/* ============================================
   STATS BAR — MODEL PORTFOLIO
   ============================================ */

.stats-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 2.2rem;
  padding: 1.4rem 2rem;
  text-align: center;
}

.stats-bar span {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #777;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ============================================
   GALLERY — 2 COLUMN GRID
   ============================================ */

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;   /* equal outer margin = gap so all spacing is identical */
  margin: 0;
}

.gallery-item {
  aspect-ratio: 2 / 3;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;   /* fills each cell completely → all images same size */
  object-position: center top;
  transition: opacity 0.3s;
}

.gallery-item:hover img { opacity: 0.92; }
/* Last 2 gallery images are landscape — show at natural ratio, no crop */
.gallery-item:nth-last-child(-n+2) {
  aspect-ratio: unset;
}
.gallery-item:nth-last-child(-n+2) img {
  position: static;
  height: auto;
  width: 100%;
  object-fit: fill;
}


/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.8rem;
  font-size: 1.8rem;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color 0.2s;
}

.lightbox-close:hover { color: #fff; }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  background: none;
  border: none;
  padding: 1rem;
  transition: color 0.2s;
  line-height: 1;
}

.lightbox-nav:hover { color: #fff; }
.lightbox-prev { left: 0.5rem; }
.lightbox-next { right: 0.5rem; }

/* ============================================
   BRAND LOGO MARQUEE
   ============================================ */

.marquee-section {
  padding: 1.8rem 0;

  overflow: hidden;
  background: #fff;
}

.marquee-label {
  text-align: center;
  font-family: 'Cormorant SC', Georgia, serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: #666;
  margin-bottom: 1.4rem;
  text-transform: uppercase;
}

.marquee-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 2.8rem;
  height: 54px;
  flex-shrink: 0;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.marquee-logo img {
  height: 26px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.4);
  transition: filter 0.3s;
  display: block;
}

.marquee-logo:hover img {
  filter: grayscale(0%) opacity(1);
}

.logo-fallback {
  font-family: 'Cormorant SC', Georgia, serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #c8c8c8;
  white-space: nowrap;
  transition: color 0.25s;
}

.marquee-logo:hover .logo-fallback { color: #555; }

.marquee-name {
  display: block;
  text-align: center;
  font-family: 'Cormorant SC', Georgia, serif;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: transparent;
  white-space: nowrap;
  margin-top: 5px;
  transition: color 0.25s;
  text-transform: uppercase;
}

.marquee-logo:hover .marquee-name { color: #999; }

/* ============================================
   VIDEO PAGES
   ============================================ */

.video-section {
  padding: 3rem 3rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #f0f0f0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* Vertical video grid */
.vertical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.video-wrapper-vertical {
  position: relative;
  padding-bottom: 177.78%;
  height: 0;
  overflow: hidden;
  background: #f0f0f0;
}

.video-wrapper-vertical iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-grid {
  display: grid;
  /* Exact Squarespace proportions: equal 187px outer margins, 56/44 col split */
  grid-template-columns: 56fr 44fr;
  margin: 35px 15.6% 0;
  height: calc(100vh - 143px);
}

.about-text {
  padding: 2rem 2rem 2rem 0;
  /* no border — matches screenshot (no dividing lines) */
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.about-tagline {
  font-family: 'Cormorant SC', Georgia, serif;
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #000;
  margin-bottom: 2.4rem;
}

.about-bio {
  font-family: 'Cormorant SC', Georgia, serif;
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.65;
  color: #000;
  text-wrap: balance; /* distributes words for even line lengths */
}

.about-bio p + p { margin-top: 0.75rem; }

.about-contact {
  margin-top: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.about-contact a {
  font-family: 'Cormorant SC', Georgia, serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: normal;
  color: #000;
  transition: opacity 0.2s;
}

.about-contact a:hover { opacity: 0.6; }

/* Photo: fills column width, leaves white space at bottom */
.about-image {
  display: flex;
  align-items: flex-start;
  padding-bottom: 2.5rem;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  max-height: calc(100vh - 143px - 2.5rem);
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  padding: 1.5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-left {
  font-family: 'Cormorant SC', Georgia, serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: #999;
}

.footer-socials {
  display: flex;
  gap: 2rem;
}

.footer-socials a {
  font-family: 'Cormorant SC', Georgia, serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: #999;
  transition: color 0.2s;
}

.footer-socials a:hover { color: #000; }

/* ============================================
   CONTACT LINK (video pages)
   ============================================ */

.contact-line {
  margin-top: 2.5rem;
  text-align: center;
}

.contact-line p {
  font-family: 'Cormorant SC', Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
  color: #888;
  margin-bottom: 0.6rem;
}

.contact-line a {
  font-family: 'Cormorant SC', Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  border-bottom: 1px solid #ccc;
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

.contact-line a:hover { border-color: #000; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 860px) {
  .site-header { padding: 1.5rem 3.5rem 0; }
  .hamburger { display: flex; }
  .site-nav { display: none; }

  .about-grid { grid-template-columns: 1fr; height: auto; margin: 0; }
  .about-text { padding: 2rem 1.5rem; }
  .about-image img { max-height: 70vw; }

  .vertical-grid { grid-template-columns: repeat(2, 1fr); }
  .video-section { padding: 2rem 1.5rem; }

  footer { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 540px) {
  .gallery { columns: 1; }
  .vertical-grid { grid-template-columns: 1fr; }
  .stats-bar { gap: 0.5rem 1.4rem; }
  .brands-section { padding: 2.5rem 1rem; }
}
