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

:root {
  --bg:        #ffffff;
  --surface:   #ffffff;
  --ink:       #1a1410;
  --ink-2:     #3d2e20;
  --ink-3:     #9a8070;
  --accent:    #e8843a;
  --accent-lt: #fca262;
  --rule:      rgba(252, 162, 98, 0.15);
  --nav-h:     68px;
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Sora', sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #d0cdc8; border-radius: 2px; }

/* ─── PROGRESS BAR ─── */
#progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--accent);
  z-index: 200;
  transition: width 0.1s linear;
}

/* ─── NAV ─── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 48px;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), height 0.4s var(--ease), transform 0.4s var(--ease);
}

#nav.scrolled {
  background: rgba(247,247,245,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--rule);
  height: 56px;
}

.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.nav-logo {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}

.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
  line-height: 1;
}


.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover,
.nav-links a.active { color: var(--accent); }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  color: var(--surface) !important;
  background: var(--accent);
  padding: 9px 20px;
  border-radius: 6px;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--accent-lt) !important;
  transform: translateY(-1px);
}


#nav.nav-hidden {
  transform: translateY(-100%);
}

/* ─── NAV STATUS PILL ─── */
.nav-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  background: rgba(252, 162, 98, 0.1);
  border: 1px solid rgba(252, 162, 98, 0.25);
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.01em;
}

.nav-status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

/* ─── HERO ─── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 48px;
  overflow: hidden;
}



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

.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding-top: var(--nav-h);
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.7s 0.2s var(--ease) forwards;
}

.hero-label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

.hero-h1 {
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
  max-width: 780px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s 0.35s var(--ease) forwards;
}

.hero-h1 em {
  font-style: normal;
  font-weight: 600;
  color: var(--accent);
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-3);
  max-width: 520px;
  margin-bottom: 52px;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.8s 0.5s var(--ease) forwards;
}

.hero-actions {
  display: flex;
  gap: 14px;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.8s 0.65s var(--ease) forwards;
}

.scroll-hint {
  position: absolute;
  bottom: 48px; left: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  opacity: 0;
  animation: fadeUp 0.8s 1s var(--ease) forwards;
}

.scroll-line {
  width: 40px; height: 1px;
  background: var(--ink-3);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--accent);
  animation: scanline 2s 1.5s ease-in-out infinite;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(10,92,82,0.25);
}

.btn-primary:hover {
  background: var(--accent-lt);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10,92,82,0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 7px;
  border: 1px solid var(--rule);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-arrow { transition: transform 0.2s; }
.btn-primary:hover .btn-arrow,
.btn-secondary:hover .btn-arrow { transform: translateX(3px); }

.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  transition: background 0.2s, transform 0.2s;
}

.btn-light:hover { background: var(--accent-lt); transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 7px;
  border: 1px solid rgba(252,162,98,0.3);
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color:  var(--accent);
  transform: translateY(-2px);
}

/* ─── STATIC BUTTON (non-clickable) ─── */
.btn-static {
  cursor: default;
  pointer-events: none;
  opacity: 0.75;
}

/* ─── SHARED SECTION ─── */
section { padding: 120px 48px; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rule) 20%, var(--rule) 80%, transparent);
  margin: 0 48px;
}

/* ─── ABOUT ─── */

#about {
  background: var(--surface);
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 48px;
  overflow: hidden;
  min-height: 700px;
}


.about-text-block {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.about-tag {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}

.about-h2 {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 32px;
}

.about-h2 strong { font-weight: 600; }

.about-body {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-3);
  margin-bottom: 24px;
}

.about-video-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 48%;
  height: 100%;
  z-index: 1;
}

.about-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 24px 0 0 24px;
}

.about-video-fade {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(to right, var(--surface), transparent);
  z-index: 2;
  pointer-events: none;
}

/* ─── CONTACT ─── */
#contact {
  background:  #fff8f3;
  color: var(--ink);
  position: relative;
  overflow: hidden;
}

.contact-bg-circle {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252,162,98,0.12) 0%, transparent 70%);;
  top: -200px; right: -200px;
  pointer-events: none;
}

.contact-bg-circle-2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252,162,98,0.08) 0%, transparent 70%);
  bottom: -150px; left: -100px;
  pointer-events: none;
}

.contact-tag {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: block;
}

.contact-inner {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}


.contact-h2 {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 24px;
}

.contact-h2 strong { font-weight: 600; color: var(--accent); }

.contact-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-3);
  margin-bottom: 52px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.contact-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── FOOTER ─── */
footer {
  background: #fff8f3;
  border-top: 1px solid rgba(252, 162, 98, 0.2);
  padding: 32px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-size: 15px;
  font-weight: 600;
  color: rgba(252, 162, 98, 0.5);
  letter-spacing: -0.02em;
}

.footer-copy {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: rgba(61, 46, 32, 0.35);;
  letter-spacing: 0.05em;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes scanline {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes vFloat {
  0%, 100% { transform: translateY(0px) scale(1); opacity: 0.6; }
  50% { transform: translateY(-12px) scale(1.15); opacity: 1; }
}

@keyframes vLineFade {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.45s; }

/* ─── MOBILE ─── */
@media (max-width: 768px) {

  body {
    overflow-y: auto;
  }


  /* NAV */
  #nav {
    padding: 0 24px;
  }

  .nav-links {
    gap: 20px;
  }


  .nav-links a[data-section] {
  display: none;
}

  /* HERO */

  #hero {
  padding: 100px 24px 80px 24px;
  min-height: unset;
  align-items: center;
}


  .hero-inner {
    padding-top: 0;
  }

  .hero-h1 {
    font-size: clamp(36px, 10vw, 52px);
    margin-bottom: 24px;
  }

  .hero-sub {
    font-size: 15px;
    margin-bottom: 36px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary,
  .btn-light,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .scroll-hint {
    display: none;
  }

  /* DIVIDER */
  .divider {
    display: none;
    margin: 0 24px;
  }

  /* ABOUT */
  #about {
  display: block;
  padding: 60px 24px 0 24px;
  min-height: unset;
  overflow: hidden;
}

  .about-text-block {
    max-width: 100%;
    margin-bottom: 48px;
  }

  .about-video-wrap {
  position: relative;
  top: unset;
  right: unset;
  width: 100vw;
  margin-left: -24px;
  height: 320px;
  z-index: 1;
  }

  .about-video-fade {
  display: none;
  }

  .about-video {
  border-radius: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}



  /* CONTACT */
  #contact {
    padding: 80px 24px;
  }

  .contact-h2 {
    font-size: clamp(32px, 9vw, 48px);
  }

  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-actions .btn-light,
  .contact-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  /* FOOTER */
  footer {
    padding: 24px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ─── SMALL MOBILE ─── */
@media (max-width: 480px) {
  .hero-h1 {
    font-size: 32px;
  }

  .nav-status {
    font-size: 11px;
    padding: 5px 10px;
  }
}


/* ─── VIDEO CONTROLS HIDE ─── */
video::-webkit-media-controls {
  display: none !important;
}

video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}