/* ─── LOCAL FONTS ───────────────────────────────────────────────────────────
   Uncomment once font files are in assets/fonts/
──────────────────────────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Cinzel';
  src: url('assets/fonts/Cinzel/Cinzel-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Hero';
  src: url('assets/fonts/Hero/Hero-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Hero';
  src: url('assets/fonts/Hero/Hero-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

/* ─── TOKENS ────────────────────────────────────────────────────────────── */

:root {
  --color-bg:        #0A0A0A;
  --color-surface:   #111111;
  --color-warm-mid:  #6B5D4F;
  --color-accent:    #C9B99A;
  --color-white:     #F5F2ED;
  --color-white-dim: rgba(245, 242, 237, 0.55);
  --font-display: 'Inter', sans-serif;
  --font-body:       'Hero', 'Raleway', 'Gill Sans', sans-serif;

  --nav-height:      60px;
  --ease:            cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


/* ─── RESET ─────────────────────────────────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
   scroll-snap-stop: always;
}

body {
  background: var(--color-bg);
  color: var(--color-white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}


/* ─── NAV ────────────────────────────────────────────────────────────────── */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 48px;
  background: rgba(20, 20, 20, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background 0.45s var(--ease);
}

nav.scrolled {
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
}

.nav-menu-btn {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--color-white);
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.7;
  padding: 0;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.nav-menu-btn:hover,
.nav-menu-btn.active {
  opacity: 1;
}

/* Hamburger icon — hidden on desktop, shown on mobile */
.hamburger-icon {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
  height: 16px;
 
}

.hamburger-label-mobile {
  display: none;
}

.bar {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--color-white);
  border-radius: 1px;
  transition:
    transform 0.35s cubic-bezier(0.22, 0.6, 0.36, 1),
    opacity   0.25s ease;
  transform-origin: center;
}

/* Animate into X when active */
.nav-menu-btn.active .bar-1 {
  transform: translateY(6px) rotate(45deg);
}
.nav-menu-btn.active .bar-2 {
  opacity: 0;
  transform: scaleX(0);
}
.nav-menu-btn.active .bar-3 {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-logo img {
  height: 30px;
  width: auto;
  object-fit: contain;
}

.nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}


/* ─── DROPDOWN ───────────────────────────────────────────────────────────── */
/* NOTE: These styles are kept active because page2 @imports main.css and
   uses the dropdown. The dropdown HTML/JS on index.html is commented out,
   but these CSS rules must remain live for page2 to work.
   INDEX.HTML REVIVAL: to re-enable the dropdown on the home page, see the
   commented-out HTML and JS blocks in index.html (search DROPDOWN REVIVAL). */

.dropdown {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  width: 220px;
  background: rgba(10, 10, 10, 0.0);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(24px);
  border-right: 1px solid rgba(245, 242, 237, 0.1);
  border-bottom: 1px solid rgba(245, 242, 237, 0.1);
  padding: 40px 24px 40px 48px;
  z-index: 190;
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  height: auto;
  grid-template-columns: none;
  border-bottom-color: rgba(245, 242, 237, 0.1);
  transition:
    transform  0.52s cubic-bezier(0.22, 0.6, 0.36, 1),
    opacity    0.38s ease,
    visibility 0s   linear 0.52s;
}

.dropdown::after {
  display: none;
}

.dropdown.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  transition:
    transform  0.52s cubic-bezier(0.22, 0.6, 0.36, 1),
    opacity    0.38s ease,
    visibility 0s   linear 0s;
}

@keyframes linkSlideIn {
  0%   { opacity: 0; transform: translateX(-160px); }
  20%  { opacity: 1; }
  100% { opacity: 1; transform: translateX(0); }
}

.dropdown-link {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-white);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(245, 242, 237, 0.1);
  opacity: 0;
  text-align: right;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.dropdown-link:last-child {
  border-bottom: none;
}

.dropdown-link:hover {
  color: var(--color-accent);
  border-bottom-color: rgba(201, 185, 154, 0.2);
}

.dropdown.open .dropdown-link:nth-child(1) {
  animation: linkSlideIn 0.48s cubic-bezier(0.22, 0.6, 0.36, 1) 0.26s forwards;
}

.dropdown.open .dropdown-link:nth-child(2) {
  animation: linkSlideIn 0.48s cubic-bezier(0.22, 0.6, 0.36, 1) 0.40s forwards;
}

.dropdown:not(.open) .dropdown-link {
  opacity: 0;
  animation: none;
}

.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 180;
}

.menu-overlay.active {
  display: block;
}


/* ─── HERO ───────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
    scroll-snap-align: start;
  scroll-snap-stop: always;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 65% at 50% 100%, rgba(0, 0, 0, 0.72) 0%, transparent 70%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.28) 0%, transparent 35%);
  pointer-events: none;
}


/* ─── HERO BRAND STACK ───────────────────────────────────────────────────── */

.hero-brand {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
    padding-top: 60vh;
  gap: 0;
}

@keyframes itemReveal {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-brand-text,
.hero-brand-line,
.hero-brand-cta {
  opacity: 1;
  
}

.hero-brand-text:nth-of-type(1) { animation-delay: 0.5s; }
.hero-brand-text:nth-of-type(2) { animation-delay: 0.68s; }
.hero-brand-line                { animation-delay: 0.86s; }
.hero-brand-cta                 { animation-delay: 1.04s; }

.hero-brand-text {
  font-family: var(--font-display);
  font-size: clamp(18px, 3vw, 45px);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-white);
  filter: brightness(1.0);
  line-height: 1.1;
  text-align: center;
  margin: 0;
}

.hero-brand-line {
  width: clamp(60px, 8vw, 140px);
  height: 1px;
  background: var(--color-white);
  filter: brightness(0.85);
  margin: 20px auto;
  display: block;
}

.hero-brand-cta {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-bg);
  background: var(--color-white);
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 38px;
  transition:
    background 0.35s ease,
    color      0.35s ease,
    transform  0.25s ease;
}

.hero-brand-cta:hover {
  background: var(--color-accent);
  color: var(--color-bg);
  transform: translateY(-2px);
}

/* ─── ABOUT SECTION ─────────────────────────────────────────────────────── */

  .about {
  position: relative;
  width: 100%;
  min-height: 100svh;
  height: auto;
  background: #dbecf4;
  scroll-snap-align: start;
  scroll-snap-stop: always;
    overflow: hidden;
}

.about::before {
  filter: blur(8px) brightness(0.15);
}

.about-text {
  position: absolute;
  left: 46%;
  bottom: 96px;
  width: 44%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  top: 80px;
  align-items: center;
}

.about-text * {
  overflow: visible !important;
  text-overflow: unset !important;
  white-space: normal !important;
   min-height: unset;
  z-index: 1;
  
}

.about-p1 {
  /*background-color: aqua;*/
  font-family: var(--font-display);
  font-size: clamp(14px, 2vw, 20px);
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: black;
  filter: brightness(0.85);
  max-width: 100%;
  overflow: visible;
  white-space: normal;
  text-overflow: clip;
  text-align: center;
}

.about-p2 {
  font-family: var(--font-display);
  font-size: clamp(14px, 2vw, 20px);
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: black;
  filter: brightness(0.85);
  max-width: 380px;
  overflow: visible;
  white-space: normal;
  text-overflow: clip;
  text-align: center;
}

.about-cta {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-bg);
  background: var(--color-white);
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 28px;
  align-self: center;
  filter: brightness(0.85);
  transition:
    background 0.35s ease,
    color      0.35s ease,
    transform  0.25s ease;
}

.about-cta:hover {
  background: var(--color-accent);
  color: var(--color-bg);
  transform: translateY(-2px);
}

.about-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
  display: block;
  /*filter: saturate(75%);*/
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity   1.4s cubic-bezier(0.22, 0.6, 0.36, 1),
    transform 1.4s cubic-bezier(0.22, 0.6, 0.36, 1);
}

.reveal-slow {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity   3s cubic-bezier(0.22, 0.6, 0.36, 1),
    transform 3s cubic-bezier(0.22, 0.6, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}



.reveal-slow.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── SCROLL CUE ─────────────────────────────────────────────────────────── */

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  
}

.scroll-cue span {
  font-family: var(--font-display);
  font-size: 7px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-white);
  opacity: 0.4;
}

.scroll-cue-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  animation: scrollLine 2s ease-in-out 2.6s infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top;    opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top;    opacity: 1; }
  51%  {                        transform-origin: bottom;             }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ─── DEMO REEL SECTION ─────────────────────────────────────────────────── */

.reel {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.reel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  cursor: pointer;
}

.reel-play-btn {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  
}

.reel-play-btn:hover {
  transform: scale(1.1);
  opacity: 0.85;
}

.reel-play-btn.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.reel-play-btn svg {
  width: 100%;
  height: 100%;
}

/* ─── BIO SECTION ────────────────────────────────────────────────────────── */

.bio {
  width: 100%;
  height: 100svh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--color-bg);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
  z-index: 1;
   overflow: hidden;
}

.bio::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: url('assets/video/thumbnail.jpg') center center / cover no-repeat;
  filter: blur(20px) brightness(0.27);
  z-index: 0;
}

.bio-panes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex: 1;
  align-items: flex-start;
  padding: 37vh 0 0;
}

.bio-pane {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
     padding: 0 48px 0 63px;
  gap: 20px;
}

.bio-line {
  width: 1px;
  min-height: 180px;
  background: var(--color-white);
  opacity: 0.5;
  flex-shrink: 0;
  align-self: stretch;
}

.bio-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bio-name {
  font-family: var(--font-display);
  font-size: clamp(12px, 1vw, 20px);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1.1;
  z-index: 1;
}

.bio-body {
  font-family: var(--font-display);
  font-size: clamp(12px, 1.1vw, 16px);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--color-white);
  opacity: 0.7;
  line-height: 1.8;
  max-width: 420px;
  white-space: normal;
  overflow: visible;
}

.bio-cta-wrap {
  display: flex;
  justify-content: center;
  padding: 40px 0 32px;
}

.bio-cta {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-bg);
  background: var(--color-white);
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 38px;
  transition:
    background 0.35s ease,
    color      0.35s ease,
    transform  0.25s ease;
}

.bio-cta:hover {
  background: var(--color-accent);
  color: var(--color-bg);
  transform: translateY(-2px);
}


/* ─── FOOTER ─────────────────────────────────────────────────────────────── */

.site-footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 48px;
  background: rgba(20, 20, 20, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(245, 242, 237, 0.08);
  z-index: 1;
}

.footer-left,
.footer-right {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-white);
  opacity: 0.5;
  margin: auto;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */

@media (max-width: 768px) {

  /* Disable scroll snapping — sections are variable height on mobile */
  html {
    scroll-snap-type: none;
  }
  
  html, body {
  overflow-x: hidden;
  max-width: 100%;
}

  .hero,
  .about,
  .reel,
  .bio {
    scroll-snap-align: none;
    scroll-snap-stop: unset;
  }
/* ── Nav ── */
nav {
  padding: 0 20px;
}

.nav-logo img {
  height: 22px;
}

.hamburger-label {
  display: none;
}

.hamburger-label--desktop { display: none; }
.hamburger-label--mobile  { display: inline; font-size: 13px; }

.hamburger-icon {
  display: none;
}

/* Kept active for page2 — see note in DROPDOWN section above */
.dropdown {
  width: 100vw;
  border-right: none;
  padding: 32px 24px 32px 32px;
}
  /* ── Hero ── */
  
  .hero {
    /*height: 100px;*/
  }
  
  .hero-brand {
    padding-top: 65vh;
    gap: 0;
  
  }

  .hero-brand-text {
    font-size: clamp(16px, 5.5vw, 28px);
    letter-spacing: 0.12em;
   
  }

  .hero-brand-line {
    width: 48px;
    margin: 16px auto;
  }

  .hero-brand-cta {
    margin-top: 12px;
    padding: 12px 28px;
    font-size: 11px;
  }

  /* ── About ── */
  .about {
    display: flex;
    flex-direction: column;
    align-items: center;
    /*padding: calc(var(--nav-height) + 24px) -10px 0;*/
    min-height: unset;
    height: auto;
  }

  .about-text {
    position: relative;
    z-index: 2;
    width: 100%;
    top: 20px;
    left: auto;
    bottom: auto;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin-bottom: -60px;
  }

  .about-p1,
  .about-p2 {
    font-size: clamp(14px, 4vw, 18px);
    max-width: 100%;
    text-align: center;
  }

  .about-image {
    position: static;
    transform: none;
    width: 180%;
    display: flex;
    justify-content: center;
    margin-top: -100px;
    /*filter: brightness(60%) saturate(50%);*/
  }

  .about-image img {
    height: -100px;
    /*width: auto;*/
    /*max-width: 100%;*/
  }

  /* ── Reel ── */
  .reel {
     height: 75svh;
    min-height: 400px;
  }

   .reel-video {
    object-position: 40% center;
  }
  
  /* ── Reel fullscreen mode ── */
  .reel.fullscreen {
    position: fixed;
    inset: 0;
    z-index: 500;
    height: 100dvh;
    width: 100vw;
    min-height: unset;
  }

  .reel.fullscreen .reel-video {
    object-fit: contain;
    object-position: center;
    background: #000;
  }

  .reel.fullscreen .reel-play-btn {
    display: none;
  }

  
  /* ── Bio ── */
  .bio {
    height: auto;
    min-height: 100svh;
    padding-bottom: 0;
  }

  .bio-panes {
    grid-template-columns: 1fr;
    padding: calc(var(--nav-height) + 40px) 0 0;
  }

  .bio-pane {
    padding: 0 28px 36px;
  }

  .bio-name {
    font-size: clamp(13px, 3.5vw, 18px);
  }

  .bio-body {
    font-size: clamp(13px, 3.5vw, 15px);
    max-width: 100%;
  }

  .bio-cta-wrap {
    padding: 28px 0 24px;
  }

  /* ── Footer ── */
  .site-footer {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    padding: 16px 24px;
  }

  .footer-right {
    text-align: center;
  }
}